├── .gitignore ├── CHANGES ├── README.md ├── examples ├── get_directory.py ├── get_screenshot.py ├── get_screenshot2.py ├── list_vms.py ├── list_vms_ignore_ssl_verify.py ├── send_file_to_vm.py └── start_timeout_process_on_win32.py ├── pysphere ├── ZSI │ ├── LBNLCopyright │ ├── ServiceContainer.py │ ├── ServiceProxy.py │ ├── TC.py │ ├── TCapache.py │ ├── TCcompound.py │ ├── TCnumbers.py │ ├── TCtimes.py │ ├── __init__.py │ ├── address.py │ ├── auth.py │ ├── client.py │ ├── digest_auth.py │ ├── dispatch.py │ ├── fault.py │ ├── generate │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── containers.py │ │ ├── pyclass.py │ │ ├── utility.py │ │ ├── wsdl2dispatch.py │ │ └── wsdl2python.py │ ├── parse.py │ ├── resolvers.py │ ├── schema.py │ ├── typeinterpreter.py │ ├── version.py │ ├── writer.py │ └── wstools │ │ ├── MIMEAttachment.py │ │ ├── Namespaces.py │ │ ├── TimeoutSocket.py │ │ ├── UserTuple.py │ │ ├── Utility.py │ │ ├── WSDLTools.py │ │ ├── XMLSchema.py │ │ ├── XMLname.py │ │ ├── __init__.py │ │ ├── c14n.py │ │ └── logging.py ├── __init__.py ├── resources │ ├── VimService_services.py │ ├── VimService_services_types.py │ ├── __init__.py │ └── vi_exception.py ├── version.py ├── vi_datastore.py ├── vi_managed_entity.py ├── vi_mor.py ├── vi_performance_manager.py ├── vi_property.py ├── vi_server.py ├── vi_snapshot.py ├── vi_task.py ├── vi_task_history_collector.py └── vi_virtual_machine.py ├── setup.py └── tests ├── README.txt ├── __init__.py ├── config.ini.dist ├── test_threading.py ├── test_vi_property.py ├── test_vi_server.py └── test_vi_virtual_machine.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/CHANGES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/README.md -------------------------------------------------------------------------------- /examples/get_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/get_directory.py -------------------------------------------------------------------------------- /examples/get_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/get_screenshot.py -------------------------------------------------------------------------------- /examples/get_screenshot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/get_screenshot2.py -------------------------------------------------------------------------------- /examples/list_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/list_vms.py -------------------------------------------------------------------------------- /examples/list_vms_ignore_ssl_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/list_vms_ignore_ssl_verify.py -------------------------------------------------------------------------------- /examples/send_file_to_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/send_file_to_vm.py -------------------------------------------------------------------------------- /examples/start_timeout_process_on_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/examples/start_timeout_process_on_win32.py -------------------------------------------------------------------------------- /pysphere/ZSI/LBNLCopyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/LBNLCopyright -------------------------------------------------------------------------------- /pysphere/ZSI/ServiceContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/ServiceContainer.py -------------------------------------------------------------------------------- /pysphere/ZSI/ServiceProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/ServiceProxy.py -------------------------------------------------------------------------------- /pysphere/ZSI/TC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/TC.py -------------------------------------------------------------------------------- /pysphere/ZSI/TCapache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/TCapache.py -------------------------------------------------------------------------------- /pysphere/ZSI/TCcompound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/TCcompound.py -------------------------------------------------------------------------------- /pysphere/ZSI/TCnumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/TCnumbers.py -------------------------------------------------------------------------------- /pysphere/ZSI/TCtimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/TCtimes.py -------------------------------------------------------------------------------- /pysphere/ZSI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/__init__.py -------------------------------------------------------------------------------- /pysphere/ZSI/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/address.py -------------------------------------------------------------------------------- /pysphere/ZSI/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/auth.py -------------------------------------------------------------------------------- /pysphere/ZSI/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/client.py -------------------------------------------------------------------------------- /pysphere/ZSI/digest_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/digest_auth.py -------------------------------------------------------------------------------- /pysphere/ZSI/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/dispatch.py -------------------------------------------------------------------------------- /pysphere/ZSI/fault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/fault.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/__init__.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/commands.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/containers.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/pyclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/pyclass.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/utility.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/wsdl2dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/wsdl2dispatch.py -------------------------------------------------------------------------------- /pysphere/ZSI/generate/wsdl2python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/generate/wsdl2python.py -------------------------------------------------------------------------------- /pysphere/ZSI/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/parse.py -------------------------------------------------------------------------------- /pysphere/ZSI/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/resolvers.py -------------------------------------------------------------------------------- /pysphere/ZSI/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/schema.py -------------------------------------------------------------------------------- /pysphere/ZSI/typeinterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/typeinterpreter.py -------------------------------------------------------------------------------- /pysphere/ZSI/version.py: -------------------------------------------------------------------------------- 1 | # Auto-generated file; do not edit 2 | Version = (2, 1, 0) 3 | -------------------------------------------------------------------------------- /pysphere/ZSI/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/writer.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/MIMEAttachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/MIMEAttachment.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/Namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/Namespaces.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/TimeoutSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/TimeoutSocket.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/UserTuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/UserTuple.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/Utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/Utility.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/WSDLTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/WSDLTools.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/XMLSchema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/XMLSchema.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/XMLname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/XMLname.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/__init__.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/c14n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/c14n.py -------------------------------------------------------------------------------- /pysphere/ZSI/wstools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/ZSI/wstools/logging.py -------------------------------------------------------------------------------- /pysphere/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/__init__.py -------------------------------------------------------------------------------- /pysphere/resources/VimService_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/resources/VimService_services.py -------------------------------------------------------------------------------- /pysphere/resources/VimService_services_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/resources/VimService_services_types.py -------------------------------------------------------------------------------- /pysphere/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysphere/resources/vi_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/resources/vi_exception.py -------------------------------------------------------------------------------- /pysphere/version.py: -------------------------------------------------------------------------------- 1 | # Do not edit. Auto generated 2 | version = (0, 2, 0) -------------------------------------------------------------------------------- /pysphere/vi_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_datastore.py -------------------------------------------------------------------------------- /pysphere/vi_managed_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_managed_entity.py -------------------------------------------------------------------------------- /pysphere/vi_mor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_mor.py -------------------------------------------------------------------------------- /pysphere/vi_performance_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_performance_manager.py -------------------------------------------------------------------------------- /pysphere/vi_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_property.py -------------------------------------------------------------------------------- /pysphere/vi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_server.py -------------------------------------------------------------------------------- /pysphere/vi_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_snapshot.py -------------------------------------------------------------------------------- /pysphere/vi_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_task.py -------------------------------------------------------------------------------- /pysphere/vi_task_history_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_task_history_collector.py -------------------------------------------------------------------------------- /pysphere/vi_virtual_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/pysphere/vi_virtual_machine.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/config.ini.dist -------------------------------------------------------------------------------- /tests/test_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/test_threading.py -------------------------------------------------------------------------------- /tests/test_vi_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/test_vi_property.py -------------------------------------------------------------------------------- /tests/test_vi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/test_vi_server.py -------------------------------------------------------------------------------- /tests/test_vi_virtual_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannvix/pySphere/HEAD/tests/test_vi_virtual_machine.py --------------------------------------------------------------------------------