Metadata-Version: 2.1
Name: goidalib
Version: 0.2.1.3b1
Summary: Library for GoidaHeta
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: aiohttp >=3.9.0

# This library is for GoidaHeta project. GoidaHeta currently in development.

### Example usage:
```py
from goidalib import GoidaHetaAPIClient

api = GoidaHetaAPIClient(base_url="http://localhost:8000", token="your_token_here")

async def main():
    print(await api.auth.get_me())

import asyncio
asyncio.run(main())
```
