Using python to open up windows programs?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shing
    New Member
    • Mar 2007
    • 58

    #1

    Using python to open up windows programs?

    1. How would you make python open up windows programs?

    2. How would you make python get data from a website, let's say, when google updates their main index page.
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by shing
    1. How would you make python open up windows programs?

    2. How would you make python get data from a website, let's say, when google updates their main index page.
    1. os.startfile("f ilename.xls") is the easiest way to start (say) excel
    2. Some have had success with the CPAMIE module. Others use PythonWin COM.Client

    Comment

    Working...