Metadata-Version: 2.1
Name: cloudsigma
Version: 2.0.0
Summary: CloudSigma's official python library.
Home-page: https://github.com/cloudsigma/pycloudsigma
Author: CloudSigma AG
Author-email: dev-support@cloudsigma.com
License: UNKNOWN
Keywords: cloud,cloudsigma,api,cloud computing
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Requires-Dist: backports.ssl-match-hostname (>=3.4.0.2)
Requires-Dist: configobj (>=5.0.6)
Requires-Dist: future (>=0.18.2)
Requires-Dist: iso8601 (>=0.1.12)
Requires-Dist: pyserial (>=3.4)
Requires-Dist: requests (>=2.23)
Requires-Dist: simplejson (>=3.17.0)
Requires-Dist: six (>=1.14.0)
Requires-Dist: websocket-client (>=0.57.0)
Requires-Dist: nose (>=1.3.7)

====================================
CloudSigma's official python library
====================================

pycloudsigma allows you to easily manage your entire infrastructure from within Python.

Creating a server is as simple as:

::

    import cloudsigma
    server = cloudsigma.resource.Server()
    test_server = { 'name': 'My Test Server', 'cpu': 1000, 'mem': 512 * 1024 ** 2, 'vnc_password': 'test_server' }
    my_test_server = server.create(test_server)


For more examples, please visit pycloudsigma_.

For more detailed information about CloudSigma, please visit the `API documentation <https://zrh.cloudsigma.com/docs/>`_.

.. _pycloudsigma: https://github.com/cloudsigma/pycloudsigma/blob/master/README.md


