Ryzenth Library

Ryzenth Library

Ryzenth is a powerful and flexible Python SDK for interacting with the new Ryzenth API a successor to the AkenoX API supporting both synchronous and asynchronous workflows out of the box.

Note: AkenoX API is still alive and supported, but Ryzenth is the next generation.

Features

  • Full support for both sync and async clients

  • Built-in API Key management

  • Support for modern AI endpoints (image generation, search, text, and more)

  • Designed for speed with httpx

Installation

pip install ryzenth[fast]

Getting Started

Async Example

from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter

ryz = ApiKeyFrom(..., is_free_from_ryzenth=True)

await ryz.aio.send_message(
    "hybrid",
    QueryParameter(
        query="hello world!"
    )
)

Sync Example

from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter

ryz = ApiKeyFrom(..., is_free_from_ryzenth=True)
ryz._sync.send_message(
    "hybrid",
    QueryParameter(
        query="hello world!"
    )
)

Environment Variable Support

You can skip passing the API key directly by setting it via environment:

export RYZENTH_API_KEY=your-api-key

Credits

  • Built with love by xtdevs

  • Inspired by early work on AkenoX API

  • Thanks to Google Dev tools for AI integration concepts

License

Private – API still in early access stage. Public release coming soon.

Last updated

Was this helpful?