Skip to main content

Python ServerDensity.com API wrapper

Project description

py-serverdensity 1.x
===============================

About py-serverdensity
----------------------
``py-serverdensity`` is a lightweight object orientated Python library for the `Server Density API <https://github.com/serverdensity.com/sd-api-docs`_.

The library provides access to all the GET and POST methods in the SD API, takes care of authentication, allows you to post values as items in a dict, returns native Python objects from the service response, and raises exceptions for service errors.

Installation
------------
The library can be installed from PyPi using ``pip``::

pip install py-serverdensity

Or cloned from `Github <http://www.github.com/>`_ using ``git``::

git clone git://github.com/1stvamp/py-serverdensity.git
cd py-serverdensity
python setup.py install

Usage
-----
Once installed just import the class ``SDApi`` from the ``serverdensity.api`` module, instance the handler with your Server Density account details (remember to turn API access on for the account you're using, see `the docs <https://github.com/serverdensity/sd-api-docs#authentication>`_, and then you can access methods on each section as attributes of the API handler::

from serverdensity.api import SDApi, SDServiceError

api = SDApi(
account='foo.serverdensity.com',
username='bar',
password='baz'
)
api.alerts.getLast()
try:
api.devices.getByHostName({'hostName': 'myserver.somedomain.com'})
api.devices.getById({},{'deviceId':'device_id'})
except SDServiceError, e:
print 'Error:', e
print 'Response:', e.response

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

py-serverdensity-1.0.12.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file py-serverdensity-1.0.12.tar.gz.

File metadata

File hashes

Hashes for py-serverdensity-1.0.12.tar.gz
Algorithm Hash digest
SHA256 f4bc21fa52a0906fbfbc7429caf5e83e0e9a3fd6cef01091ba2d82117bfc83fe
MD5 069a244bc065e7a9f0353010092a83ed
BLAKE2b-256 2906e5ed258b05d32e4292be0960e9e7ebe12e55678d62dc1b7d522e78f667ba

See more details on using hashes here.

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