From 874f62e0ab04cdb72814b60cd20ab4459fa9b4a5 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Wed, 13 Jan 2021 21:31:30 +0100 Subject: rename package to phpipam-api --- phpipam/__init__.py | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 phpipam/__init__.py (limited to 'phpipam/__init__.py') diff --git a/phpipam/__init__.py b/phpipam/__init__.py deleted file mode 100755 index 1dc065f..0000000 --- a/phpipam/__init__.py +++ /dev/null @@ -1,40 +0,0 @@ -# -# phpipam/__init__.py -# (c) 2021 Jonas Gunz -# License: MIT -# -from .backend import PhpipamBackend -from .resources import PhpipamResource - -class PhpipamAPI: - """ - phpIPAM API Implementation - - Attributes - ---------- - sections - subnets - addresses - devices - - https://phpipam.net/api-documentation/ - """ - - def __init__(self, api_url, app_id, api_user, api_password): - """ - Parameters - ---------- - api_url : str - URL of phpIPAM instance. Example: https://phpipam.example.com/ - app_id : str - AppID configrued in API settings - api_user : str - username, leave empty to use static token authentification - api_password : str - password or static authentification token - """ - - self._backend = PhpipamBackend(api_url, app_id, api_user, api_password) - - def __getattr__(self, item): - return PhpipamResource(self._backend, item) -- cgit v1.2.3