Metadata-Version: 2.1
Name: goidalib
Version: 0.2.1.1
Summary: Library for GoidaHeta
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: httpx >=0.28.1
Requires-Dist: httpx-sse >=0.4.3

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

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

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

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

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