Re: [BangPypers] something in python similar to java applets

2010-09-07 Thread Noufal Ibrahim
On Tue, Sep 07 2010, naman jain wrote: [...] > But a standalone downloadable executable needs to communicate back the > results to the server. So you mean the applet launches it locally and keeps > track of it to send the results back. [...] You could have some kind of an API (web maybe) which

Re: [BangPypers] something in python similar to java applets

2010-09-07 Thread naman jain
On Tue, Sep 7, 2010 at 1:48 PM, steve wrote: > Hello Naman, > > > On 09/06/2010 06:32 PM, naman jain wrote: > >> Hello, >> >> I want to do something through python what applets do in java. >> Through a website I want people to log in and do some tests locally on >> their >> machines and send the

Re: [BangPypers] Problem while importing unicodedata

2010-09-07 Thread Srinivasachari
Thank you. Its working. sys.path was overwritten with old python. Regards, Srinivasachari. On 7 September 2010 14:50, Baiju M wrote: > On Tue, Sep 7, 2010 at 2:23 PM, Srinivasachari > wrote: > > Hello, > > > > I am trying to import unicodedata module it is giving following error. > > > > Imp

Re: [BangPypers] something in python similar to java applets

2010-09-07 Thread naman jain
On Tue, Sep 7, 2010 at 1:12 PM, Noufal Ibrahim wrote: > On Mon, Sep 6, 2010 at 6:32 PM, naman jain wrote: > > Hello, > > > > I want to do something through python what applets do in java. > > Through a website I want people to log in and do some tests locally on > their > > machines and send the

Re: [BangPypers] Problem while importing unicodedata

2010-09-07 Thread Baiju M
On Tue, Sep 7, 2010 at 2:23 PM, Srinivasachari wrote: > Hello, > > I am trying to import unicodedata module it is giving following error. > > ImportError: Module use of python23.dll conflicts with this version of > Python. > > Py version :Python 2.5.2 > OS :Windows XP > > Any suggestions ? You ar

Re: [BangPypers] something in python similar to java applets

2010-09-07 Thread steve
Hello Naman, On 09/06/2010 06:32 PM, naman jain wrote: Hello, I want to do something through python what applets do in java. Through a website I want people to log in and do some tests locally on their machines and send the results to the server. According to my understanding we have methods l

[BangPypers] Problem while importing unicodedata

2010-09-07 Thread Srinivasachari
Hello, I am trying to import unicodedata module it is giving following error. ImportError: Module use of python23.dll conflicts with this version of Python. Py version :Python 2.5.2 OS :Windows XP Any suggestions ? Thanks in advance. Regards, Srinivasachari. _

Re: [BangPypers] something in python similar to java applets

2010-09-07 Thread Noufal Ibrahim
On Mon, Sep 6, 2010 at 6:32 PM, naman jain wrote: > Hello, > > I want to do something through python what applets do in java. > Through a website I want people to log in and do some tests locally on their > machines and send the results > to the server. > > According to my understanding we have me