Metadata-Version: 2.1
Name: pywhatsup
Version: 0.0.1
Summary: Python WhatsUp Gold API wrapper
Home-page: https://github.com/peterbaumert/pywhatsup
Author: Peter Baumert
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pywhatsup
![PyPI - Downloads](https://img.shields.io/pypi/dm/pywhatsup) ![GitHub](https://img.shields.io/github/license/peterbaumert/pywhatsup) ![PyPI](https://img.shields.io/pypi/v/pywhatsup)

Still work in progress :)

## usage
```
from pywhatsup import api

whatsup = api("https://whats.up.gold:9644", "user", "password")

dev = whatsup.devices(id=422)
interfaces = dev.interfaces.all()
int = dev.interfaces.get("1502")
poll = dev.config.get("polling")
```

# Changelog
<!--
    Placeholder for the next version (at the beginning of the line):
    ## **WORK IN PROGRESS**
-->

## 0.0.1 (2022-06-01)
* first working version
