blob: f5795724ff66fd40909fcbc1cb817f0d66627e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#
# phpipam/__init__.py
# (c) 2021 Jonas Gunz <himself@jonasgunz.de>
# 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, verify=True):
"""
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
verify : Bool (optional)
verify API server SSL certificate
"""
self._backend = PhpipamBackend(api_url, app_id, api_user, api_password, verify)
def __getattr__(self, item):
return PhpipamResource(self._backend, item)
|