How to run python scripts with IDLE

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • vyzasatya@gmail.com

    #1

    How to run python scripts with IDLE

    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 Advance
    Ravi

  • beza1e1

    #2
    Re: How to run python scripts with IDLE

    What are you developing for?

    You could write another small python scripts, which calls your script.
    os.system("pyth on yours.py --param Ünicöde")

    Comment

    • Vyz

      #3
      Re: How to run python scripts with IDLE

      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

      Comment

      Working...