Difference between revisions of "Using Excel with Python"

From PeformIQ Upgrade
Jump to navigation Jump to search
 
Line 15: Line 15:
=Links=
=Links=


* http://code.google.com/p/robotframework-autoitlibrary/
* http://robotframework-autoitlibrary.googlecode.com/svn/tags/robotframework-AutoItLibrary-1.0/doc/AutoItLibrary.html
* http://robotframework-autoitlibrary.googlecode.com/svn/tags/robotframework-AutoItLibrary-1.0/doc/AutoItLibrary.html



Latest revision as of 08:45, 19 February 2013

Examples

>>> from win32com.client.dynamic import Dispatch
>>>
>>> from win32com.client.dynamic import Dispatch
>>>
>>> excel = Dispatch('Excel.Application')
>>>
>>>
>>>
>>> excel.visible = True

Links