Metadata-Version: 2.1
Name: akips
Version: 0.1.3
Summary: A python library for interfacing with the AKiPS Web API
Home-page: https://github.com/wwhitaker/akips
License: MIT
Author: William E Whitaker
Author-email: will.whitaker@unc.edu
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.31)
Project-URL: Repository, https://github.com/wwhitaker/akips
Description-Content-Type: text/markdown

# akips
This akips module provides a simple way for python scripts to interact with 
the [AKiPS Network Monitoring Software](http://akips.com) API interface.

## Example

```py
from akips import AKIPS

api = AKIPS('akips.example.com',username='api-ro',password='something')

devices = api.get_devices()

for device in devices:
    print("Device entry: {}".format(device))

```

# Bugs/Requests

Please use the [GitHub issue tracker](https://github.com/wwhitaker/akips/issues) 
to submit bugs or request features.

