A fork of https://github.com/Synerty/SOAPpy-py3 This is a working tree till fixes get imported upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
296 B

  1. #!/usr/bin/env python
  2. import sys
  3. sys.path.insert(1, "..")
  4. from SOAPpy import *
  5. server = SOAPProxy("http://206.135.217.234:8000/")
  6. server.COM_SetProperty("Visible", 1)
  7. server.Workbooks.Open("c:\\test.xls")
  8. server.COM_NestedCall('ActiveSheet.Range("A2").EntireRow.Delete()')
  9. server.quit()