Metadata-Version: 2.4
Name: scrambo
Version: 0.1.0a6
Summary: Thin Python SDK for Scrambo's cloud-hosted video editing agents
Author: Scrambo
License-Expression: MIT
Project-URL: Homepage, https://scrambo.dev
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx<1,>=0.27
Requires-Dist: python-dotenv<2,>=1.0

# Scrambo

Scrambo is a thin Python SDK for building reliable video agents. Users can orchestrate specialist workers, let them inspect and validate the actual timeline, and turn one-off prompts into repeatable production workflows, without building the entire video-agent stack from scratch.

Check out the documentation to start: https://www.scrambo.dev/docs/start-here


## Examples: 

```python
from scrambo import editor, source, timeline
from scrambo.tools.genAI import img2video, voiceover

editor.open(project="listing-tour", input="./listing-stills")
brief = source.generate_agent.create(
    "Create a narrated tour",
    tools=[img2video, voiceover],
    budget_usd=5.0,
    max_calls=4,
)
plan = timeline.storyboard_agent.plan("Build a polished 30-second tour")
editor.start()
timeline.author_agent.edit(plan)
```
