Metadata-Version: 2.4
Name: goidalib
Version: 0.2.0
Summary: Library for GoidaHeta
Requires-Python: >=3.11
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.

### Using
```py
from goidalib import GoidaHetaAPIClient

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

async def main():
    print(await api.logger.get_logs())

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