/usr/lib/python2.7/dist-packages/psphere-0.5.2.egg-info/PKG-INFO is in python-psphere 0.5.2-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | Metadata-Version: 1.1
Name: psphere
Version: 0.5.2
Summary: vSphere SDK for Python
Home-page: https://github.com/jkinred/psphere
Author: Jonathan Kinred
Author-email: jonathan.kinred@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: Introduction
============
psphere is a Python interface for the `VMware vSphere Web Services SDK`_, a
powerful API for programatically managing your VMware infrastructure:
* Provision, clone and snapshot virtual machines
* Query and configure clusters, host systems and datastores
* Programatically configure ESXi hosts (i.e. for automation)
psphere can be used to create standalone Python scripts or used as a library
in larger Python applications (e.g. Django).
Usage
=====
>>> from psphere.client import Client
>>> client = Client("your.esxserver.com", "Administrator", "strongpass")
>>> servertime = client.si.CurrentTime()
>>> print(servertime)
2010-09-04 18:35:12.062575
>>> client.logout()
Installation
============
The latest stable version of psphere can be installed from PyPi:
# pip install -U psphere
Community
=========
Discussion and support can be found on the `psphere Google Group`_.
.. _psphere Google Group: https://groups.google.com/group/psphere
.. _VMware vSphere Web Services SDK: http://pubs.vmware.com/vsphere-50/index.jsp?topic=/com.vmware.wssdk.apiref.doc_50/right-pane.html
Keywords: vsphere,vmware
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
|