help

2018-05-28 Thread Mutyala Veera Vijaya Teja
e them. Thanks & Regards, Mutyala Veera Vijay Teja Software Developer (M) +91- 8341841937 Skype ID: Veera Vijay Teja <http://www.eunimart.com/> [image: Facebook icon] <http://www.facebook.com/vijayteja30>[image: LinkedIn icon] <http://www.linkedin.com/vijayteja30> [imag

[no subject]

2015-06-25 Thread Knss Teja via Python-list
I WANT TO install 4.3  version ... but the MSI file is giving a DLL error .. what should I do :/ please use REPLY ALL .. so that I get the mail to my gmail inbox-- https://mail.python.org/mailman/listinfo/python-list

Re: Archiving emails in Gmail

2010-06-15 Thread teja
Ohh my bad... thanks a lot for replying Alf.. The error which I've pasted above, was thrown before I modified the code a bit.. Here's the error thrown on running the code I've pasted above.. there's not much of a difference in the error though. HTTP Error 500: Internal Server Error Traceback (m

Archiving emails in Gmail

2010-06-15 Thread teja
Hi, I have a requirement that I want to log-in into a gmail account read all unread mails, mark them as read and then archive them. I am using libgmail (version 0.1.11) library to do so, using which I am able to log-in into a gmail account fetch all unread message and then read them one by one. No

Re: copy file over LAN

2008-03-26 Thread Teja
On Mar 27, 8:34 am, Astan Chee <[EMAIL PROTECTED]> wrote: > Hi, > I have afileon another machine on the localnetwork(my machine and > local machines are on windows) and I want tocopyit locally. Now the > machine requires authentication and when I try to do a > import shutil > shutil.copy(r'\\remote

Regarding Threads and locals()

2008-03-20 Thread Teja
Hi all, I have a GUI applicaion(along with threads). When the run button is pressed in the GUI a separate thread starts( Thread is created using beginthreadex) and does the required activity. Now, while the thread is being executed, i want the locals() present inside the thread's run function to b

Re: COM server and EXE

2008-01-08 Thread Teja
On Jan 8, 3:33 pm, Teja <[EMAIL PROTECTED]> wrote: > Hi All, > > I have a Python COM server. I need to deploy it on various sytems. > When I run the COM server from > python its showing an output " Registered : sample.lib" > > If I try to use the C

COM server and EXE

2008-01-08 Thread Teja
Hi All, I have a Python COM server. I need to deploy it on various sytems. When I run the COM server from python its showing an output " Registered : sample.lib" If I try to use the COM obj from a VB client like: obj = CreateObject("sample.lib") Its working fine without any errors Now I am try

Re: Interop between C# and Python

2007-04-28 Thread Ravi Teja
nvenient because working with typed systems is more convenient in dynamic languages than it is to work with untyped systems in typed languages. Of course, if the project is really small, none of this really matters. Pick your poison. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Interop between C# and Python

2007-04-27 Thread Ravi Teja
; > thx, >Uriel Katz Use soaplib instead of ZSI. It has better WSDL support which makes it easier to create client stubs from other languages. http://trac.optio.webfactional.com/ Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Helpbook and CHM

2007-04-19 Thread Ravi Teja
> > > > Teja wrote: > > > > > how to generate CHM files in Boa(Python)??? > > > > >http://www.rutherfurd.net/software/rst2chm/index.html > > > > > TJG > > > > Can't I do it in Boa constructor ??? I have seen an option

Re: Helpbook and CHM

2007-04-19 Thread Teja
On Apr 19, 4:33 pm, Ravi Teja <[EMAIL PROTECTED]> wrote: > On Apr 19, 3:58 am, Teja <[EMAIL PROTECTED]> wrote: > > > On Apr 19, 3:48 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > > > > Teja wrote: > > > > how to generate CHM files in Boa(Py

Re: Helpbook and CHM

2007-04-19 Thread Ravi Teja
On Apr 19, 3:58 am, Teja <[EMAIL PROTECTED]> wrote: > On Apr 19, 3:48 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > > > Teja wrote: > > > how to generate CHM files in Boa(Python)??? > > >http://www.rutherfurd.net/software/rst2chm/index.html > >

Re: Helpbook and CHM

2007-04-19 Thread Teja
On Apr 19, 3:48 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > Teja wrote: > > how to generate CHM files in Boa(Python)??? > >http://www.rutherfurd.net/software/rst2chm/index.html > > TJG Can't I do it in Boa constructor ??? I have seen an option in Boa to create

Helpbook and CHM

2007-04-19 Thread Teja
How to create a helpbook and display it using python(in Boa). Also, how to generate CHM files in Boa(Python)??? Any pointers please -- http://mail.python.org/mailman/listinfo/python-list

TASK KILL

2007-04-09 Thread Teja
Will TASKKILL kills a thread when thread id is given ?? Or does it kill only a process?? How to ensure that a thread is killed? -- http://mail.python.org/mailman/listinfo/python-list

Re: Kill thread

2007-04-09 Thread Teja
On Apr 9, 6:18 pm, "Christian" <[EMAIL PROTECTED]> wrote: > On Apr 9, 5:14 am, "Teja" <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > Can any on help me out in killing a thread (i.e deleteing the reources > > like, stack ,memor

Re: Kill thread

2007-04-09 Thread Teja
On Apr 9, 3:01 pm, Michel Claveau <[EMAIL PROTECTED]> wrote: > Hi! > > If you have the PID of the process (example: 1234), use this > command-line : >TASKKILL/F /PID 1234 > > -- > @-salutations > > Michel Claveau Hi Michel, Thnks for the replyBut TASKKILL kills the process entirely..N

Kill thread

2007-04-09 Thread Teja
Hi all, Can any on help me out in killing a thread (i.e deleteing the reources like, stack ,memory etc) which is started with win32process.beginthreadex()??? Rite now, I am suspending the thread. But any pointers as to how to delete the thread permanently? Its pretty urgent... Please... Teja.P

Re: ZSI, SOAP and .NET web services - problem

2007-03-26 Thread Ravi Teja
, although I mainly used it as a server than a client. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Help me with this!!!

2007-02-01 Thread Ravi Teja
ile in notepad (or other text editor)? You do not use regex to search binary files. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Hi, I'm new to python

2007-01-27 Thread Ravi Teja
esources. If you have very basic questions, IRC (freenode has a Python channel), is a better option. When you post, make the question as specific as possible. Sometimes typing a good question itself gives you an answer. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: While loop with "or"? Please help!

2007-01-25 Thread Ravi Teja
> while usrinp != "y" or "Y" or "N" or "n": <<<<PROBLEM Correct way: while usrinp != "y" or usrinp != "Y" or usrinp != "N" or usrinp != "n": There has to be a boolean evaluation on both

Re: How to convert a string into an integer

2007-01-22 Thread Ravi Teja
licitly convert yourself. In this case with int_value = int(string_value) Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: confused on python rpc with apache, is it possible?

2007-01-19 Thread Ravi Teja
there but I thought that if some > thing needs to be done in php in the future then apache better be > there but as I said that is no need if pythone can do it on a stand > alone basis. Use mod_python with some xmlrpc handler. There is more than one around. Google for them. That way

Re: Making a simple script standalone

2007-01-18 Thread Ravi Teja
, check out ShedSkin. Since you mentioned that you were using very few modules (ShedSkin supports os, stat, string, time), it might just work. ShedSkin translates your Python code to fast C++ code that can be compiled to a tight app. http://sourceforge.net/projects/shedskin/ Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: I need to consume a .NET web service in a Python client

2007-01-12 Thread Ravi Teja
e to the Python world so please be bear with my novice > queries. > > thanks in advance, > Mohit Start Here http://www.diveintopython.org/soap_web_services/index.html Example Client http://www.diveintopython.org/soap_web_services/first_steps.html Ravi Teja -- http://mail.python.org/mailman/listinfo/python-list

Re: How to write temporary data to file?

2007-01-08 Thread Ravi Teja
Thomas Ploch wrote: > Ravi Teja schrieb: > > Thomas Ploch wrote: > >> Hi folks, > >> > >> I have a data structure that looks like this: > >> > >> d = { > >>'url1': { > >>'emails':

Re: How to write temporary data to file?

2007-01-08 Thread Ravi Teja
ard library modules that can persist data. But in this case, I would recommend ZODB/Durus. (Your code example scares me. I hope you have benevolent purposes for that application.) Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: private variables

2007-01-08 Thread Ravi Teja
by convention. See Python docs for a detailed explanation. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Network failure when using urllib2

2007-01-08 Thread Ravi Teja
ting safeguards against DOS attacks from their network with normal users in mind. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: Network failure when using urllib2

2007-01-08 Thread Ravi Teja
vices/review.html especially 11.3.3. Last-Modified/If-Modified-Since in the next page Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: program deployment

2007-01-05 Thread Ravi Teja
king kikapu wrote: > hi to all folks here, > > i am learning Python, just finished a book and i am starting to write > programs. > I just want to ask, is the "correct" way to deploy my programs to other > computers, the .pyc files ?? > > I now that with the "-m compileall ." switch can compile a .

Re: How do I add users using Python scripts on a Linux machine

2007-01-02 Thread Ravi Teja
> > > > How about invoking scripts with SUID root set? > > Linux seems to ignore SUID bit on scripts: Yes. My bad. The work around was to use native launchers. I don't remember the details. Perhaps with the interpreter embedded to launch it in-process and to hard code the script paths (or at least

Re: How do I add users using Python scripts on a Linux machine

2007-01-02 Thread Ravi Teja
Ivan Voras wrote: > Ramdas wrote: > > Well, > > > > I need to add users from a web interface for a web server, which runs > > only Python. I need to add users, set quotas and in future even look at > > managing ip tables to limit bandwidth. > > > > I know os.system(), but this has to be done throu

Re: C app and Python

2006-12-31 Thread Ravi Teja
but a C > application. > or I need to embed Python in my C application. > > Thanks, > Vertilka A bit of both :-) http://www.python.org/doc/ext/extending-with-embedding.html Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: keypressed() function

2006-12-28 Thread Ravi Teja
[EMAIL PROTECTED] wrote: > I need a function (blocking or non-blocking) that tells me if a key has > been pressed (even before it has been released etc.). Also, I would of > course like to know _which_ key has been pressed. > > I know that this probably does not exist in the Python library already

Re: Reverse of SendKeys??

2006-12-28 Thread Ravi Teja
Scripter47 wrote: > Hey! > > I know there is a module named SendKeys. > SendKeys module it can type strings as you where typing it, on the keyboard. > But is there a module that does the reverse. A module that gets > _anything_ what the keyboard writes. > For example. If i type "hey" on my keyboar

Re: Scaling pictures

2006-12-28 Thread Ravi Teja
Kajsa Anka wrote: > I would like some advice, I'm going to build a small app that will, among > other things, scale images so that they can be published on a web site. I've > never done any image processing in python before so I would like to ask what > is the best way of doing this, I will not do

Re: Xah's Edu Corner: Introduction to 3D Graphics Programing

2006-12-27 Thread Ravi Teja
Xah Lee wrote: > Regarding VisualPython... i saw a demo in 2002 by a professor > friend. I think it is good. Though, why is its licensing not GPL or > otherwise Open Source? That's kinda odd since Pyhton is. You are confusing VPython with Activestate's Visual Python IDE plugin for Visual Studio.

Re: merits of Lisp vs Python

2006-12-17 Thread Ravi Teja
Jean-Paul Calderone wrote: > On 11 Dec 2006 03:01:32 -0800, Ravi Teja <[EMAIL PROTECTED]> wrote: > >Timofei Shatrov wrote: > > > > [snip] > > > >Of course, doctest is hardly the ultimate testing solution. But it does > >an admirable job for many

Re: merits of Lisp vs Python

2006-12-13 Thread Ravi Teja
Robert Uhl wrote: > "Ravi Teja" <[EMAIL PROTECTED]> writes: > > > Mark Tarver wrote: > >> > >> seems to show that Python is a cut down (no macros) version of Lisp > >> with a worse performance. > > > > By that standard, every ot

Re: merits of Lisp vs Python

2006-12-11 Thread Ravi Teja
Mark Tarver wrote: > Paul Rubin wrote: > > "Mark Tarver" <[EMAIL PROTECTED]> writes: > > > How do you compare Python to Lisp? What specific advantages do you > > > think that one has over the other? > > > > > > Thanks; a quick re

Re: merits of Lisp vs Python

2006-12-11 Thread Ravi Teja
Timofei Shatrov wrote: > But, you have to admit that it looks horrible (at least at the first glance). > If > there's some programming style that I absolutely can't stand, it would be the > one where programmer writes a huge block of commentary describing what a > function does, followed by one-l

Re: merits of Lisp vs Python

2006-12-11 Thread Ravi Teja
Kaz Kylheku wrote: > Paddy wrote: > > http://en.wikipedia.org/wiki/Doctest > > I pity the hoplelessly anti-intellectual douche-bag who inflicted this > undergraduate misfeature upon the programming language. > > This must be some unofficial patch that still has a hope of being shot > down in fla

Re: SOAP Server with WSDL?

2006-12-07 Thread Ravi Teja
u need a stateful remoting mechanism. The choice is Pyro if both the server and all the clients are written in Python. Else, use CORBA or ICE with DMI. All of these are simple to use for simple remote object invocations although distributed computing in general does have a learning curve. Ravi Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to compile omniORBpy on Windows?

2006-12-04 Thread Ravi Teja
[EMAIL PROTECTED] wrote: > How do I compile omniORBpy 3.0 on Windows? The readme.txt file seems > to talk only about how to do this on Unix. Unfortenuately, I can not > use the binary because I need to use Python 2.3.5. (and the binary > requires that I use Python 2.4). > > I tried to copy the o

Re: How to realize the interactive python in Eclipse?

2006-12-03 Thread Ravi Teja
purple wrote: > I have installed the Eclipse and the plug-in Pydev. Also, I have add an > python program in the external tools. When I run the python program in > the external tools, i can type python command just like in the python > shell.But when I finished running a python file, in the console

Re: Python script and C++

2006-11-27 Thread Ravi Teja
Thuan Seah Tan wrote: > Hi all, > > I am new to python and currently I am working on a traffic simulation > which I plan to define the various agents using scripting. It's kind of like > scripting for non-playable character in games. I am thinking of using python > for this but I am concerned

Re: How good is CORBA?

2006-11-27 Thread Ravi Teja
On Nov 21, 11:20 am, "Sai Krishna M" <[EMAIL PROTECTED]> wrote: > there are certainly client/server interactions. But are they cross-language interactions? This is how I would choose to distribute code. Same machine, all in Python - organize in modules in Python path. Different machines, all in P

Re: Will GPL Java eat into Python marketshare?

2006-11-16 Thread Ravi Teja
> Personally, I've never gotten jpype to work. Is it just me, or is it > a troublesome install? > > Harry George > PLM Engineering Architecture It works fine for me now. However, I do recall having an issue a while ago (most likely me, rather than JPype). -- http://mail.python.org/mailman/listi

Re: Programming Language that is Spreadsheet/Table Based

2006-11-05 Thread Ravi Teja
Omar wrote: > I'm looking for a programming language or module that sorta looks and > feels like MS Excel (I love and think in tables), yet has the power and > open-endedness of python or javascript. I'm still pretty new to > python. PyCells http://pycells.pdxcb.net/ http://pycells.pdxcb.net/wiki

Re: Regular Expression for a string

2006-11-01 Thread Teja
John Machin wrote: > Teja wrote: > > HI all, > > > > I need to write a regular experssion for a string which satisfies the > > following a criteria : > > > > 1) it should start with an alphabet > > 2) it can contain alphabets/digits/_ from second cha

Re: Regular Expression for a string

2006-11-01 Thread Teja
Roy Smith wrote: > In article <[EMAIL PROTECTED]>, > "Teja" <[EMAIL PROTECTED]> wrote: > > > HI all, > > > > I need to write a regular experssion for a string which satisfies the > > following a criteria : > > > > 1) it should

Re: Regular Expression for a string

2006-11-01 Thread Teja
James Stroud wrote: > Teja wrote: > > HI all, > > > > I need to write a regular experssion for a string which satisfies the > > following a criteria : > > > > 1) it should start with an alphabet > > 2) it can contain alphabets/digits/_ from second cha

Regular Expression for a string

2006-11-01 Thread Teja
HI all, I need to write a regular experssion for a string which satisfies the following a criteria : 1) it should start with an alphabet 2) it can contain alphabets/digits/_ from second character 3) it can contain "[a-z]" or "[0-9]" at the end. but this is optional can any one please help me ou

Get coordinates of a cell

2006-10-26 Thread Teja
I have a GUI application with a Frame and a grid in it. I want to popup a menu after the user enters some text in a cell and hits ENTER key. I was able to popup the menu. However the menu is not popping up exactly at the position where I want it. It should be popped up immediately after the cell in

Re: Rapid desktop application development

2006-10-19 Thread Ravi Teja
Stephen Eilert wrote: > Hi all, > > There has been much hype lately about web "megaframeworks", like > TurboGears, Django and Rails(Ruby side). Those are all fantastic > frameworks, nicely integrated so that the user can focus on solving his > problem, instead of doing all the scaffolding and fram

Re: More Noob Questions

2006-10-19 Thread Ravi Teja
> 1) I'm also learning to program flash movies while I learn to do > python. How can one implement flash movies into their python code? Depending on what "implementing flash movies into Python code" means. Python and Flash can be complementary. You can develop the UI in Flash and have it talk to

Re: COM Error -- Urgent help

2006-10-17 Thread Teja
ternetexplorer.application.Navigate None Fredrik Lundh wrote: > Teja wrote: > > > s=pythoncom.CoMarshalInterThreadInterfaceInStream(pythoncom.IID_IDispatch,i­­e) > > > >thread.start_new_thread(self.nav, (s,'www.google.com') > > > > I am gettin

Re: COM Error -- Urgent help

2006-10-17 Thread Teja
Diez B. Roggisch wrote: > Teja wrote: > > > > > Dennis Lee Bieber wrote: > >> On 17 Oct 2006 00:58:59 -0700, "Teja" <[EMAIL PROTECTED]> declaimed > >> the following in comp.lang.python: > >> > >> >thread.star

Re: COM Error -- Urgent help

2006-10-17 Thread Teja
Dennis Lee Bieber wrote: > On 17 Oct 2006 00:58:59 -0700, "Teja" <[EMAIL PROTECTED]> declaimed > the following in comp.lang.python: > > >thread.start_new_thread(self.nav, (s,'www.google.com') > > > > I am getting an attribute error &g

Re: COM Error -- Urgent help

2006-10-17 Thread Teja
Fredrik Lundh wrote: > Teja wrote: > > > I am sorry. By func(dest) I meant MyNavigate(dest). Can u please help > > me out... > > nobody here can read your mind. please post the code you're actually > using, *and* the error you're getting. > > Thnks

Re: COM Error -- Urgent help

2006-10-17 Thread Teja
Méta-MCI wrote: > Hi! > > > .func( is not defined... > > > @-salutations > -- > Michel Claveau I am sorry. By func(dest) I meant MyNavigate(dest). Can u please help me out... Thnks, Teja.P -- http://mail.python.org/mailman/listinfo/python-list

COM Error -- Urgent help

2006-10-16 Thread Teja
HI all, I have a problem in accesing COM objects in threads. To be precise, lets assume that I have a class GenericFunctions which is defined as follows: import win32com.client, pythoncom, thread ie=win32com.client.Dispatch('internetexplorer.application') ie.Visible=1 class GenericFunctions:

Re: ADO with Python

2006-10-16 Thread Ravi Teja
Ralf wrote: > Is their anybody with xperience in using the both and can provide me with > some xamples. Googling for python ado returns this simple tutorial http://www.markcarter.me.uk/computing/python/ado.html COM access in Python is straight forward with win32all. -- http://mail.python.org/ma

Re: COM and Threads

2006-10-16 Thread Teja
Teja wrote: > Roger Upole wrote: > > "Teja" <[EMAIL PROTECTED]> wrote: > > > > > > Roger Upole wrote: > > > > > >> "Teja" <[EMAIL PROTECTED]> wrote: > > >> > > > >> > Roger Upole

Re: COM error

2006-10-16 Thread Teja
Neil Cerutti wrote: > On 2006-10-14, Teja <[EMAIL PROTECTED]> wrote: > > What is "ValueError: argument is not a COM object" ? I get this > > error when I try to pass a COM object to a thread. > > > > Any pointers > > Try passing it to Larry

Re: Attribute error

2006-10-16 Thread Teja
Max Erickson wrote: > "Teja" <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > > What is attribute error? what causes that error, especially with COM > > objects? > > > > To be precise : > > > > Attribute Error: LCAS.La

COM and threads

2006-10-16 Thread Teja
HI all, I have a problem in accesing COM objects in threads. To be precise, lets assume that I have a class GenericFunctions which is defined as follows: import win32com.client, pythoncom, thread ie=win32com.client.Dispatch('internetexplorer.application') ie.Visible=1 class GenericFunctions:

Attribute error

2006-10-13 Thread Teja
Hi all, What is attribute error? what causes that error, especially with COM objects? To be precise : Attribute Error: LCAS.LabcarController.writeLogWindow() Here, LCAS is a COM object Thanks Teja.P -- http://mail.python.org/mailman/listinfo/python-list

Re: terminate execfile

2006-10-13 Thread Teja
Teja wrote: > How to terminate execfile() in the middle of its execution. Any > pointers ??? > Its very urgent please > > > Thanks > Teja.P Can I raise an interrupt using PyErr_SetInterrupt??? Is so , does any one know how to do it? -- http://mail.python.org/ma

terminate execfile

2006-10-13 Thread Teja
How to terminate execfile() in the middle of its execution. Any pointers ??? Its very urgent please Thanks Teja.P -- http://mail.python.org/mailman/listinfo/python-list

COM error

2006-10-13 Thread Teja
What is "ValueError: argument is not a COM object" ? I get this error when I try to pass a COM object to a thread. Any pointers Thanks Teja -- http://mail.python.org/mailman/listinfo/python-list

Thread termination

2006-10-13 Thread Teja
Hi all, Does any one know how to terminate or kill a thread that is started with "start_new_thread()" in the middle of its execution? Any pointers? Thanks in advance Teja. -- http://mail.python.org/mailman/listinfo/python-list

Re: COM and Threads

2006-10-13 Thread Teja
Roger Upole wrote: > "Teja" <[EMAIL PROTECTED]> wrote: > > > > Roger Upole wrote: > > > >> "Teja" <[EMAIL PROTECTED]> wrote: > >> > > >> > Roger Upole wrote: > >> > > >> >>

Re: COM and Threads

2006-10-12 Thread Teja
Roger Upole wrote: > "Teja" <[EMAIL PROTECTED]> wrote: > > > > Roger Upole wrote: > > > >> "Teja" <[EMAIL PROTECTED]> wrote: > >> >I have an application which uses COM 's Dispatch to create a COM based > >>

Re: COM and Threads

2006-10-12 Thread Teja
hg wrote: > Teja wrote: > > hg wrote: > > > >> Teja wrote: > >>> I have an application which uses COM 's Dispatch to create a COM based > >>> object. Now I need to upgrade the application to a threaded one. But > >>> its gi

Re: COM and Threads

2006-10-12 Thread Teja
Roger Upole wrote: > "Teja" <[EMAIL PROTECTED]> wrote: > >I have an application which uses COM 's Dispatch to create a COM based > > object. Now I need to upgrade the application to a threaded one. But > > its giving an error that COM and threads

Re: COM and Threads

2006-10-12 Thread Teja
hg wrote: > Teja wrote: > > I have an application which uses COM 's Dispatch to create a COM based > > object. Now I need to upgrade the application to a threaded one. But > > its giving an error that COM and threads wont go together. Specifically > > its an at

COM and Threads

2006-10-12 Thread Teja
I have an application which uses COM 's Dispatch to create a COM based object. Now I need to upgrade the application to a threaded one. But its giving an error that COM and threads wont go together. Specifically its an attribute error at the point where COM object is invoked. Any pointers please???

Re: newbie IronPython compiled scripts speed question

2006-09-24 Thread Ravi Teja
In most cases, carefully examine why you need native code at all. Since a good number of performance sensitive CPython modules are in fact written in C to begin with, the improvements may not always be significant. I don't know about your application but here are some general observations. Beginer

Re: Running Python script from C++ code(.NET)

2006-09-23 Thread Ravi Teja
> A trivial question - I have a working Python script that I have to > invoke from C++ code. No fancy stuff - just run the whole script with > its parameters. No callbacks, no signalling - nada, just > stupid,primitive, straightforward call. > > And while there is a lot of help on embedding, I coul

Re: Running Python script from C++ code(.NET)

2006-09-23 Thread Ravi Teja
> A trivial question - I have a working Python script that I have to > invoke from C++ code. No fancy stuff - just run the whole script with > its parameters. No callbacks, no signalling - nada, just > stupid,primitive, straightforward call. > > And while there is a lot of help on embedding, I coul

Re: Writing Video conference software for Windows

2006-09-22 Thread Ravi Teja
> Someone said about VNC... I'll take a look, but since it is an > exercise I need to do it, Exercises typically need you to implement, not invent (leave that for a thesis or a dissertation). Rather than invent VNC, you could just implement it on your own from the specs. http://realvnc.com/docs/r

Re: Writing Video conference software for Windows

2006-09-21 Thread Ravi Teja
> I need to write a software that allow to see the desktop That would be the VNC protocol. Don't reinvent the wheel. VNC is relatively efficient in that it only updates the portions of the screen that changed. Maybe this project could be your starting point. PyVNC http://bdash.net.nz/blog/2005/0

Re: include statement

2006-09-19 Thread Ravi Teja
> is it possible in python to include another python source file into the > current namespace, i.e.completely analogous to the #include statement > in C. By using a pre-processor, like C does. http://www.freenet.org.nz/python/pyp/ If you are new to Python, keep in mind that this is for special ca

Re: RegexBuddy (anyone use this?)

2006-09-16 Thread Ravi Teja
[EMAIL PROTECTED] wrote: > Has anyone tried this thing.. > http://www.regular-expressions.info/regexbuddy.html > > If I had $30 would this be worth getting or should I just try to learn > the manual. (I was hopeing the essential refrence would clear things > up but I am downloading a gilgillion p

Re: auto fill out web form

2006-09-02 Thread Ravi Teja
Chris Smith wrote: > Does anyone know of any python scripts that can help me automatically > navigate through some forms so I can schedule the download the file at the > end of all the questions? ClientForm http://wwwsearch.sourceforge.net/ClientForm/ -- http://mail.python.org/mailman/listinfo/

Re: Python web service ...

2006-08-26 Thread Ravi Teja
Tim Williams wrote: > > At this time right now I prefer to do something that works the quickest > > possible... > > I never had any experience with CGI, do I need to set up a web server > > for that ? > > can you point me some usefull reading material so I can get a start ? > > I will post for a c

Re: text editor suggestion?

2006-08-23 Thread Ravi Teja
John Salerno wrote: > Ravi Teja wrote: > > > ??? > > > > In the same file, near the top. > > > > keywordclass.python=and assert break class continue def del elif \ > > else except exec finally for from global if import in is lambda None \ > >

Re: text editor suggestion?

2006-08-22 Thread Ravi Teja
John Salerno wrote: > Ravi Teja wrote: > > > Stick to SciTE. It takes almost no learning effort and meets everyone > > of those requirements. As far as customerization goes, SciTE can be > > customerized quite well. In fact, it can even be scripted with Lua. You > &g

Re: text editor suggestion?

2006-08-21 Thread Ravi Teja
> I also just started using Scite, and I really like it, except I find its > syntax highlighting to be very inflexible. You aren't able to define > your own groups of words -- you have to use what's given, basically. One > thing I like about UltraEdit is that you simply define as many groups of > k

Re: Python Editor with Autocorrection

2006-08-21 Thread Ravi Teja
Laurentiu wrote: > hello! > > > i am searching for a free python editor with > autocorrection capabillities. > > for example:" the wrong setfocus() call to become > SetFocus(), etc." > > > thanks Python is a dynamic language, which means that methods that may not exist in your source code may spr

Re: What would be the best way to run python client in the background

2006-08-21 Thread Ravi Teja
> The reason for the a seperate persistant check is because it will be > used to enable software to be installed in whole lab of PCs but only > allow a predifined number to run the software at any time one time. > And then when a user stop using the software a licence will become > available to for

Re: What would be the best way to run python client in the background

2006-08-20 Thread Ravi Teja
gel wrote: > Hi > I have written a python client server app that keeps an eye on > processes starting and ending on a client and makes decision on what to > do based on information from the server end. I want to run the client > end of the app more or less invisibly (no console) on the XP clients

Re: How to catch these kind of bugs in Python?

2006-08-19 Thread Ravi Teja
asincero wrote: > Is there anyway to catch the following type of bug in Python code: > > message = 'This is a message' > # some code > # some more code > if some_obscure_condition: >nessage = 'Some obscure condition occured.' > # yet more code > # still more code > print message > > > In the ab

Re: Text to MP3 using pyTTS - Non-programmer question

2006-08-19 Thread Ravi Teja
[EMAIL PROTECTED] wrote: > Thanks for the script. Are there any online python intrepreters? > > I'd like to play around with the script. I don't have access to my home > PC. You probably will have to wait till you get to yours. There were some AJAXian ones but I doubt that you will find a free (a

Re: sqlite3 or mysqldb?

2006-08-18 Thread Ravi Teja
> To learn SQL SQLite should be enough - it has all the basics, just as > MySQL, while it doesn't require any server/client configuration > (encoding configuration in MySQL is real PITA). But if you want any > "serious SQL", go with any freely available *real SQL server*, like > Firebird or Postgre

Re: recommended general-purpose string template packages?

2006-08-13 Thread Ravi Teja
> In general, I'm mainly interested in a template engine for dynamic web > pages but would like a general purpose one to avoid learning yet > another package for generating e-mail messages, form letters, source > code, whatever. > > In particular, does anyone have much experience with the Python >

  1   2   3   >