Metadata-Version: 2.4
Name: imaige
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Summary: Async, HTTP-only Python client for the Imaige AI generation API.
Author-email: Zach Handley <zach@blackleafdigital.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://imaige.io
Project-URL: Repository, https://github.com/BlackLeafDigital/imaige-sdk

# imaige (Python)

Async, HTTP-only Python client for the Imaige AI generation API.

```python
import asyncio, imaige

async def main():
    client = imaige.ImaigeClient("https://api.imaige.io", "imk_abcd1234_secret")
    result = await client.generate_image_and_wait({
        "prompt": "a neon city at dusk",
        "model": "example-model",
        "imageSize": "landscape_16_9",
    })
    print(result["mediaUrls"])

asyncio.run(main())
```

See the workspace README for the full surface.

