aboutsummaryrefslogtreecommitdiff
path: root/phpipam/__init__.py
blob: 1dc065f45e3124ed827c15099f4e87c527448d66 (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
#
# 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):
        """
        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)