Skip to main content

vmjuggler provides the simple high level API to VMWare’s SDK.

Project description

What is vmjuggler

vmjuggler provides the simple high level API to VMWare’s SDK.

It built around pyvmomi library with aim to simplify interaction to VMWare VCenter and it’s managed objects for DevOps crowd and those who don’t want to plunge deeply to object’s relations. At the same time ability to perform actions on low level was preserved.

Installation

pip install vmjuggler

Manual installation

Getting started

from vmjuggler import VCenter

# Create instance of VCenter and connect to VCenter
vc = VCenter('10.0.0.1', 'user', 'super_secret_password')
vc.return_single(True)
vc.connect()

# Find VM and print out it's power state
vm = vc.get_vm(name='My_Linux_VM')
if vm:
    print(f'{vm.name} | {vm.state}')

# Close connection to VCenter
vc.disconnect()

Please check documentation for more examples.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vmjuggler-0.1.1.tar.gz (11.9 kB view hashes)

Uploaded Source

Built Distribution

vmjuggler-0.1.1-py2.py3-none-any.whl (13.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page