Metadata-Version: 2.4
Name: goidalib
Version: 0.2.2.0
Summary: Library for GoidaHeta
Keywords: goidaheta,async,api,wrapper
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.9.0
Requires-Dist: toml-cli>=0.7.0

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

### Example usage:
```py

from goidalib import GoidaHetaAPIClient
import asyncio

async def main():
    async with GoidaHetaAPIClient(base_url="http://localhost:8000",token="your_token_here") as client:
        # Example usage of the AuthAPI
        user_info = await client.auth.get_user(tg_id=123456789)
        print("User Info:", user_info)

if __name__ == "__main__":
    asyncio.run(main())

```
