diff --git a/odin_api/api.py b/odin_api/api.py index eccb824..a030cdf 100644 --- a/odin_api/api.py +++ b/odin_api/api.py @@ -54,8 +54,20 @@ def authenticate(self) -> None: # CALL CENTER # USER + + # DEVICE + + # internal to api + + def _requester(): + """ sends request to api, this is used in all functions. + """ + + + + return def __str__(self): return f"API - url: {self.base_url}, username: {self.username}, " \ diff --git a/odin_api/utils/parsing.py b/odin_api/utils/parsing.py index e69de29..bcf3923 100644 --- a/odin_api/utils/parsing.py +++ b/odin_api/utils/parsing.py @@ -0,0 +1,7 @@ + +# TODO: Look at parsing objects to and from JSON in python there must be a package that achieves this +def ao_object_to_json(): + return + +def json_to_ao_object(): + return \ No newline at end of file