Metadata-Version: 1.1
Name: siux
Version: 0.1
Summary: Python API library for SiUX (website monitoring)
Home-page: https://github.com/eSiUX/siux-python/
Author: Erik Brozek
Author-email: hellocode@esiux.com
License: MIT
Download-URL: https://github.com/eSiUX/siux-python/archive/master.zip
Description: SiUX
        ----
        
        To use (with caution), simply do::
        
            >>> import sys
            >>> sys.path.append( '../siux' )
            >>> import siuxlib
            >>> auth = '<YOUR_API_KEY>'
            >>> S = siuxlib.SiUXclient( auth=auth )
            >>> retList = S.sourceList()
            >>> if retList[ 'statusCode' ] == 'OK':
            >>>    for line in retList[ 'data' ]:
            >>>       print line
        
Keywords: monitoring,testing,website
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: System :: Monitoring
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
