The beginning tm

This commit is contained in:
Jef Roosens 2022-05-31 08:47:25 +02:00
parent 8682fc9110
commit 9023d9ccbb
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 25 additions and 0 deletions

3
vieter/__init__.py Normal file
View file

@ -0,0 +1,3 @@
from .vieter import Vieter
__all__ = ('Vieter')

7
vieter/vieter.py Normal file
View file

@ -0,0 +1,7 @@
class Vieter:
def __init__(self, address: str, api_key: str) -> None:
self._address = address
self._api_key = api_key
def _do_req(self, path: str, method: str, params: dict):
pass