Ranno SDK v0.3.3
Instant Code Gen & Execution from Prompts
Features
- AI Code Gen: Turns plain English prompts into runnable Python scripts.
- File Intelligence: Auto detects schema and columns for perfect context.
- Shadow Copy Integrity: Keeps file backups & safely rolls back on failure.
- Ultra Minimalist: Only 3 robust functions (gn, ex, cf) - zero boilerplate.
Install Package
$ pip install ranno
Documentation
from ranno import gn
# Without Data
gn("Create a list of 10 dinosaurs")
# With Data
gn("Find the average price", data="data.csv")
Generate Code (No Execution)