Metadata-Version: 2.1
Name: phpypam
Version: 0.1.7
Summary: Python API client library for phpIPAM installation
Home-page: https://codeaffen.github.io/phpypam
Author: Christian Meißner
Author-email: Christian Meißner <cme+codeaffen@meissner.sh>
License: GPLv3
Keywords: api phpipam
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (<3.0,>=2.21)

# phpypam: Python API client library for phpIPAM installation

phpypam is intended to be a complete library for speaking with phpIPAM API.

Using `phpypam` is as easy as using the UI.

```python
import phpypam

pi = phpypam.api(
  url='https://ipam.example.com',
  app_id='ansible',
  username='apiuser',
  password='apiP455wd',
  ssl_verify=True
)
pi.get_entity(controller='sections')
```


