Run nanoodle visual AI workflows from Python — zero-dependency executor for saved noodle-graph.json files
Project description
nanoodle (Python)
Run visual AI workflows from Python. Design them in the
nanoodle editor, save as noodle-graph.json, then load
and re-run them here — same graph, same NanoGPT API,
your own key.
Zero runtime dependencies (stdlib only). Library + CLI in one install.
Looking for JavaScript / Node? → nanoodle-js Running graphs in GitHub CI → run-noodle-action · saved graphs as AI-agent tools → nanoodle-mcp · Agent Skills → nanoodle-skill / noodle-skills
At a glance
Build once, run anywhere. The browser app is for designing and testing. This package is for automating the same workflows in scripts, servers, and agents.
| Package | nanoodle on PyPI |
| Runtime | Python ≥ 3.9 · stdlib only · no deps |
| Sibling | JavaScript package (same graphs, same semantics) |
| Editor | nanoodle.com — wire nodes, hit 💾, download the graph |
Install
pip install nanoodle
export NANOGPT_API_KEY=... # nano-gpt.com API key (or OAuth access token)
Latest on PyPI is 0.1.3; share-link loading, the local media nodes
(resize/vframes/combine/soundtrack/trim/extractaudio), and x402 --pay need
0.2 — until it ships, pip install git+https://github.com/nanoodlecom/nanoodle-py.
Quickstart (library)
from nanoodle import Workflow
wf = Workflow.load("noodle-graph.json")
result = wf.run({"Text": "a cozy ramen shop on a rainy night"})
img = result["Image"] # media: MediaRef (url + bytes()/save())
img.save("ramen." + img.suggested_extension()) # extension matches the actual MIME (often jpg)
print(result.cost_usd, result.remaining_balance)
With the app’s starter graph (text → LLM prompt-writer → image), that’s the whole program.
The URL is the package
Every nanoodle share link is a runnable artifact. Anywhere a graph.json path
is accepted — Workflow.load or the CLI — a share link works just as well:
wf = Workflow.load("https://nanoodle.com/#g=...") # workflow link
wf = Workflow.load("https://nanoodle.com/play.html#a=...") # app link (graph only)
Workflow links (#g=/#j=) and app links (#a=, graph only — the app shell
stays in the browser) both decode, as do da.gd/TinyURL short links (resolved
by reading redirect headers; no credentials are ever sent). Direct fragment
links decode fully offline — zero network I/O, stdlib only. Paste one
straight from a README, a chat, or a tweet.
Discover a workflow’s interface
wf.inputs # [InputSpec(key="Text", node_id="n1", field="text", kind="textarea", ...)]
wf.outputs # [OutputSpec(key="Image", node_id="n3", type="image", ports=["image"])]
wf.settings # [SettingSpec(key="n3.size", kind="select", default="1k", ...)]
Input keys are flexible (case-insensitive): the node’s custom name, nodeId.field
("n2.system"), or the input’s label when unique. A workflow with exactly one
required input also accepts a bare value: wf.run("hello").
Media inputs
from nanoodle import media_from_file
wf.run({"Image": media_from_file("photo.jpg")}) # local file
wf.run({"Image": "https://example.com/photo.jpg"}) # hosted or data: URL
wf.run({"Image": raw_bytes}) # raw bytes (MIME sniffed)
Media is sent inline as base64 (NanoGPT has no upload endpoint). Files over ~4.4 MB (~3.5 MB for transcription) are refused locally with a clear error before any paid call.
Settings, progress, errors
result = wf.run(
{"Text": "sunset harbor"},
settings={"n3.model": "flux-dev", "n3.size": "1k"},
timeout=600,
on_progress=lambda evt: print(evt["type"], evt.get("name", "")),
)
run() raises RunError when an output (sink) node fails — error.result
still has partial results, per-node statuses, and cost so far. Failures in
lanes no output depends on only appear in result.errors. Unknown/unsupported
node types, missing required inputs, bad keys, and a missing API key all fail
before anything is spent.
CLI
Installed as nanoodle-py (and python -m nanoodle always works):
nanoodle-py inspect graph.json
nanoodle-py run graph.json --input Text="a cozy ramen shop" --set n3.size=1k --out ./out
nanoodle-py run graph.json --input n2.system=@style.txt --json
nanoodle-py run graph.json --env-file .env --input Text="hello" # NANOGPT_API_KEY from a .env file
nanoodle-py inspect "https://nanoodle.com/#g=..." # a share link works too (quote it — # is a shell comment)
--out DIR— save media outputs to files--json— machine-readable result--env-file PATH— load.env-styleKEY=VALUElines (existing env vars win)
Supported nodes
| runs | node types |
|---|---|
| local | text, upload (image/audio/video), choice, join, comment |
| local media† | resize, vframes, combine, soundtrack, trim, extractaudio |
| NanoGPT | llm (incl. vision + audio input), image, draw, edit, inpaint*, vision, tvideo, ivideo, vedit, lipsync, music, remix, tts, transcribe |
† local media needs ffmpeg on PATH (soft dependency — not a PyPI package). Same behaviour as the browser app; clear error if ffmpeg is missing.
* inpaint: the browser app composites the mask onto black at the source pixel size; this library passes your mask through verbatim. Supply a black/white mask matching the source dimensions.
Use it as an agent skill
A saved workflow plus a short SKILL.md playbook is a skill any coding agent
can run — Claude Code, Cursor, Grok, or anything that reads markdown and runs
shell. Recipe and template: docs/agent-skills.md.
Example skill (idea → LLM prompt → poster image):
npx skills add nanoodlecom/nanoodle-py@poster-generator -g -y
pip install nanoodle # CLI used by the skill
Source: examples/agent-skill/poster-generator/.
Media is saved as Poster.<ext> (MIME-derived; often .jpg) — use the path the
CLI prints. The JavaScript package ships the same skill name; installing both
overwrites — pick one runtime (see agent-skills.md).
Cost
Bring your own NanoGPT API key; NanoGPT bills your balance per generation and reports the price on each response.
result.cost_usd— total of prices returnedresult.cost_exact—Falseif any call omitted a price (total is then a floor)result.remaining_balance— freshest balance the API reported
A price of 0 means known-included (subscription), not unknown. No telemetry,
no analytics; the API key is never logged.
No account at all: pay per run in Nano (x402)
NanoGPT supports x402 accountless payments: call the API with no key, get an HTTP 402 invoice, settle it in Nano (XNO — instant, feeless), and the call completes. nanoodle wires that up end to end:
# each paid call prints a Nano invoice (nano: URI + address) on stderr and waits
python -m nanoodle run "https://nanoodle.com/#g=..." --input Text="hello" --pay
wf = Workflow.load(url, payment=lambda inv:
my_wallet.send(inv["payTo"], inv["amountRaw"])) # YOUR signer does the send
The library never touches funds or keys: payment must be a callable —
passing a seed or private-key string raises. Do the send inside the callback
with your own wallet/signer, or show inv["uri"] for a human to scan. Each
API call pays at most once; graphs with several paid nodes produce one small
invoice per node. The invoice dict is field-identical to nanoodle-js's, so
payment callbacks port between the two libraries unchanged.
Copy-paste scripts (CLI, print callback, wallet stub): examples/x402/.
Accountless image, start to finish
The starter graph (text → LLM prompt-writer → image), run with no NanoGPT account and no API key — pay the Nano invoice, and the image node settles for a few cents of XNO:
python -m nanoodle run noodle-graph.json --input Text="a cozy ramen shop on a rainy night" --pay --out ./noodle-out
# → LLM node runs, image node prints a nano: invoice, waits for the deposit,
# then writes noodle-out/Image.jpg
Testing
Tests run fully offline against a mock NanoGPT server (tests/harness/):
python -m unittest discover -s tests -t .
Opt-in live probe (spends a fraction of a cent):
python3 scripts/live-spot-check.py (add --image to also run the starter
graph’s image step).
Docs
Design contract and format/engine/io specs live in docs/:
DESIGN.md, SPEC-format.md, SPEC-engine.md, SPEC-io.md.
Same contract as the JavaScript package.
License
MIT — see LICENSE. Not affiliated with NanoGPT. Build workflows at nanoodle.com.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 nanoodle-0.2.0.tar.gz.
File metadata
- Download URL: nanoodle-0.2.0.tar.gz
- Upload date:
- Size: 65.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db7a3f768acd70c202a814153dc1bb12cd6519226d5c30ac4d43234e2702ef16
|
|
| MD5 |
c3d7001fb7a7016808586ebbfacd66aa
|
|
| BLAKE2b-256 |
279556052a2f10bbb488351b0c65b634be4d977a593a5720fe3607cf1dafb91e
|
File details
Details for the file nanoodle-0.2.0-py3-none-any.whl.
File metadata
- Download URL: nanoodle-0.2.0-py3-none-any.whl
- Upload date:
- Size: 52.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b91da9ea3d6fbf6c9324572a020336625c3f8ef07a81845ab792df3b58c32f
|
|
| MD5 |
822f83254ae1c88a0cceed6a5c172efa
|
|
| BLAKE2b-256 |
bb2fa40a03b76e26bcd83f4000a3d5aa0fe8ff97eede9396e2bb0e8bbf2f0850
|