Kino API — official Python SDK
Unofficial-free, zero-dependency Python client for Kino API — official full-strength Seedance 2.0 video and Seedream 5.0 image generation. Pure standard library, Python 3.8+.
pip install kinoapi
Quickstart
from kinoapi import KinoClient
kino = KinoClient("sk-YOUR_TOKEN")
# Video (async, ~30-90s, returns the finished video URL)
url = kino.generate_video(
"seedance-2.0-mini",
"Wind turbines on a green hillside at dawn, cinematic",
duration=5,
resolution="720p", # 480p / 720p / 1080p / 4k (model-dependent)
ratio="16:9", # 16:9 / 9:16 / 1:1
)
print(url)
# Image (sync, ~30s, returns the image URL)
img = kino.generate_image("seedream-5.0-lite", "a tiny paper boat in a puddle")
print(img)
Low-level API
# Video is task-based — fine-grained control:
task = kino.create_video_task("seedance-2.0-mini", "a cat", duration=5,
resolution="480p")
print(task["task_id"])
state = kino.get_video_task(task["task_id"])
# state["data"]["status"] == "SUCCESS" -> state["data"]["result_url"]
Pricing
- Video: per generated second (480p mini from $0.074/s; 1080p pro $0.550/s)
- Images: per successful image (lite $0.052, pro $0.132)
- Failed tasks refunded automatically. Balance never expires.
Full pricing & docs: https://kino-api.com/docs.html
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kinoapi-0.1.0.tar.gz
(3.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kinoapi-0.1.0.tar.gz.
File metadata
- Download URL: kinoapi-0.1.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6727974a1b40d1bd98de172c7ae553460a313374289e0ab3d25db575f9d3e2e0
|
|
| MD5 |
e38799de896b215028520d247ae52cdc
|
|
| BLAKE2b-256 |
53a771ffcebfadba54f681154cae6659f086070d6eafb04eedbe82714d294f77
|
File details
Details for the file kinoapi-0.1.0-py3-none-any.whl.
File metadata
- Download URL: kinoapi-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f11e6184239f9e2a433c95681e191f4edc7968f70e13f291bfc2b8979ec46938
|
|
| MD5 |
ab4baf16578e8bde53774471375e6099
|
|
| BLAKE2b-256 |
b9446777e7dda0783d090cbc59a797aae701d88160fb62b0ce6939327448f3a9
|