Re: How to run python scripts with IDLE

2005-10-07 Thread Vyz
I am trying to modify some of the tools to automate telugu wikipedia maintainence tasks and I have realised that i cannot used cmd.exe as it wont display unicode(atleast telugu). I will try the above and see if it works. can I use the above command in IDLE?? Thanks for the prompt reply Ravi -- ht

Re: How to run python scripts with IDLE

2005-10-07 Thread beza1e1
What are you developing for? You could write another small python scripts, which calls your script. os.system("python yours.py --param Ünicöde") -- http://mail.python.org/mailman/listinfo/python-list

How to run python scripts with IDLE

2005-10-07 Thread vyzasatya
Hi all, My problem is # I have to run a script which takes a command line parameter which is unicode text # I cant use Windows console as it doesnt support /display unicode # I dont seems to find a way to pass command line arguments to scripts in IDLE. Please suggest me what I can do. Thanks in Adv