1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-21 17:29:59 -05:00

Merge pull request #34 from tianhao64/master

Updated bindings for vSphere 6.6.1 release
This commit is contained in:
Tianhao He 2017-08-29 15:30:56 -07:00 committed by GitHub
commit 755a79f560
12 changed files with 13 additions and 13 deletions

View File

@ -4,7 +4,7 @@ python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt --upgrade --ignore-installed six
- pip install -r requirements.txt --extra-index-url file://$PWD/lib --upgrade --ignore-installed six
- pip install -r test-requirements.txt
- pip install pycodestyle
# command to run tests

View File

@ -54,7 +54,7 @@ Python may be outdated and/or not be intended for development and we recommended
The required packages are listed in the requirements.txt file and installed using "pip install"; For more details on how to install python packages using pip please refer to the [pip user guide](http://pip.readthedocs.io/en/latest/user_guide/).
```cmd
pip install -r requirements.txt
pip install -r requirements.txt --extra-index-url <file:///abs_path/to/sdk/lib/>
```
### Setting up a vSphere Test Environment

Binary file not shown.

View File

@ -4,6 +4,5 @@ For python developers, client libraries are supplied for testing and development
Name | Description
------------------------------------| -------------
vapi_runtime-\<version>.zip | vAPI runtime responsible for serialization/de-serialization of objects and wire protocol
vapi_common_client-\<version>.zip | vAPI common client code
vapi_client_bindings-\<version>.zip | client stubs for vSphere Automation APIs
vapi_runtime | vAPI runtime responsible for serialization/de-serialization of objects and wire protocol
vapi_client_bindings | Client stubs for vSphere Automation APIs

4
lib/index.html Normal file
View File

@ -0,0 +1,4 @@
<html><head><title>Simple Index</title><meta name='api-version' value='2' /></head><body>
<a href='vapi-client-bindings/'>vapi-client-bindings</a><br />
<a href='vapi-runtime/'>vapi-runtime</a><br />
</body></html>

View File

@ -0,0 +1 @@
<a href='vapi_client_bindings-2.7.0-py2.py3-none-any.whl'>vapi_client_bindings-2.7.0-py2.py3-none-any.whl</a><br />

View File

@ -0,0 +1 @@
<a href='vapi_runtime-2.7.0-py2.py3-none-any.whl'>vapi_runtime-2.7.0-py2.py3-none-any.whl</a><br />

View File

@ -1,8 +1,4 @@
pyOpenSSL >= 0.14
pyVmomi >= 6.5
lxml
suds ; python_version < '3'
suds-jurko ; python_version >= '3.0'
lib/vapi_runtime-2.5.0.zip
lib/vapi_common_client-2.5.0.zip
lib/vapi_client_bindings-2.5.0.zip
vapi-client-bindings

View File

@ -15,9 +15,9 @@ __author__ = 'VMware, Inc.'
__copyright__ = 'Copyright 2016 VMware, Inc. All rights reserved.'
config = {}
config["SERVER"] = "10.192.248.66"
config["SERVER"] = ""
config["USERNAME"] = "administrator@vsphere.local"
config["PASSWORD"] = "Admin!23"
config["PASSWORD"] = "VMware1!"
config["ESX_HOST1"] = ""
config["ESX_HOST2"] = ""

View File

@ -1,2 +1 @@
testtools>=0.9.34
vcrpy