Metadata-Version: 1.1
Name: pyproxmox
Version: 1.1.2
Summary: Python Wrapper for the Proxmox 2.x API
Home-page: https://github.com/Daemonthread/pyproxmox
Author: Toby Sears
Author-email: admin@tobysears.co.uk
License: UNKNOWN
Download-URL: http://pypi.python.org/pypi/pyproxmox
Description: 
        A python wrapper for the Proxmox 2.x API.
        
        Example usage:
        
        1) Create an instance of the prox_auth class by passing in the
        url or ip of a server, username and password:
        
        a = prox_auth('vnode01.example.org','apiuser@pve','examplePassword')
        
        2) Create and instance of the pyproxmox class using the auth object as a parameter:
        
        b = pyproxmox(a)
        
        3) Run the pre defined methods of the pyproxmox class. NOTE: they all return data, usually in JSON format:
        
        status = b.getClusterStatus()
        
        For more information see https://github.com/Daemonthread/pyproxmox
        
Keywords: proxmox,api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: requests
