Metadata-Version: 2.4
Name: arkroute
Version: 0.1.0
Summary: One API for the best image & video generation AI models
Home-page: https://ark-route.com
License: MIT
Project-URL: Homepage, https://ark-route.com
Project-URL: Documentation, https://api.ark-route.com/docs
Project-URL: Repository, https://github.com/guixiang123124/arkroute
Keywords: ai,image-generation,video-generation,api,seedream,kling,openai
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.24.0
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# ArkRoute Python SDK

**One API for the best image & video generation AI models.**

Access powerful AI models like Nano Banana, Seedance, and more through a simple Python interface.

## Installation

```bash
pip install arkroute
```

## Quick Start

```python
from arkroute import ArkRoute

# Initialize client
client = ArkRoute(api_key="your_api_key")

# Generate an image
result = client.generate_image(
    prompt="A beautiful sunset over mountains",
    model="nano-banana-2",
    size="2K"
)
print(result["url"])

# Generate a video
video_job = client.generate_video(
    prompt="A cat playing in a garden",
    model="seedance-1.5-pro",
    duration=5
)

# Check video status
status = client.get_video_status(video_job["task_id"])
print(status["state"])

# List available models
models = client.list_models()
print(models)
```

## Available Models

### Image Generation
- **nano-banana-2** - High-quality image generation
- **seedream-v1** - Creative image synthesis

### Video Generation  
- **seedance-1.5-pro** - Professional video generation
- **kling-v1** - Fast video creation

## Parameters

### Image Generation
- `prompt` (str): Description of the image to generate
- `model` (str): Model to use (default: "nano-banana-2")
- `size` (str): Image size (default: "2K")

### Video Generation
- `prompt` (str): Description of the video to generate
- `model` (str): Model to use (default: "seedance-1.5-pro")
- `duration` (int): Video duration in seconds (default: 5)

## Links

- **Website**: https://ark-route.com
- **API Documentation**: https://api.ark-route.com/docs
- **GitHub**: https://github.com/guixiang123124/arkroute
- **Get API Key**: https://ark-route.com/dashboard

## License

MIT License
