The beginning tm
This commit is contained in:
parent
8682fc9110
commit
9023d9ccbb
5 changed files with 25 additions and 0 deletions
3
vieter/__init__.py
Normal file
3
vieter/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from .vieter import Vieter
|
||||
|
||||
__all__ = ('Vieter')
|
||||
7
vieter/vieter.py
Normal file
7
vieter/vieter.py
Normal 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
|
||||
Reference in a new issue