VMware vCenter Server
The vCenter module of the VMware Cloud Foundation SDK provides methods related to content libraries and resource deployment, tagging, and managing internal and external security certificates.
Package (PyPI) | REST API documentation
Getting started
Prerequisites
- Supported Python versions: 3.10, 3.11, 3.12, 3.13 and 3.14
Install the package
pip install vmware-vcenter
Connect to a vCenter Server
import requests
import urllib3
from vmware.vapi.vsphere.client import create_vsphere_client
session = requests.session()
# Disable cert verification for demo purpose.
# This is not recommended in a production environment.
session.verify = False
# Disable the secure connection warning for demo purpose.
# This is not recommended in a production environment.
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
# Connect to a vCenter Server using username and password
vsphere_client = create_vsphere_client(server='<vc_ip>', username='<vc_username>', password='<vc_password>', session=session)
# List all VMs inside the vCenter Server
vsphere_client.vcenter.VM.list()
Output in a Python Interpreter:
>>> import requests
>>> import urllib3
>>> from vmware.vapi.vsphere.client import create_vsphere_client
>>> session = requests.session()
>>> session.verify = False
>>> urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
>>> vsphere_client = create_vsphere_client(server='<vc_ip>', username='<vc_username>', password='<vc_password>', session=session)
>>> vsphere_client.vcenter.VM.list()
[Summary(vm='vm-58', name='standalone-20e4bd3af-esx.0-vm.0', power_state=State(string='POWERED_OFF'), cpu_count=1, memory_size_mib=256),
...]
NOTE: If you are using Bash, be sure to use single quote for username and password to preserve the values. If you use double quote, you will have to escape special characters, such as "$". See Bash manual
Release files for vmware-vcenter 9.1.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vmware_vcenter-9.1.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Release files / vmware_vcenter-9.1.1.0-py3-none-any.whl
| Download URL | vmware_vcenter-9.1.1.0-py3-none-any.whl |
|---|---|
| Size | 1.7 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
69fcf617e46fc33c8229eb8e06d98baefa1c4d91e69963171a8b9accfa6fdaea
|
|
BLAKE2b-256 checksum How to use checksums |
7b356c85a9d93d9405bf5fdcb14931c79e75070ddf3e9e8824983aab8237265b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.6
|