CLI tool for NanoBanana AI Image Generation via AceDataCloud API
Project description
NanoBanana CLI
A command-line tool for AI image generation and editing using NanoBanana (Gemini-powered) through the AceDataCloud API.
Generate and edit AI images directly from your terminal — no MCP client required.
Features
- Image Generation — Generate images from text prompts with multiple models
- Image Editing — Edit, combine, and transform images with AI
- Multiple Models — nano-banana (fast), nano-banana-2 (improved), nano-banana-pro (best, 4K)
- Flexible Output — Aspect ratios (1:1, 16:9, 9:16, etc.) and resolutions (1K/2K/4K)
- Task Management — Query tasks, batch query, wait with polling
- Rich Output — Beautiful terminal tables and panels via Rich
- JSON Mode — Machine-readable output with
--jsonfor piping
Quick Start
1. Get API Token
Get your API token from AceDataCloud Platform:
- Sign up or log in
- Navigate to the NanoBanana API page
- Click "Acquire" to get your token
2. Install
# Install with pip
pip install nano-banana-pro-cli
# Or with uv (recommended)
uv pip install nano-banana-pro-cli
# Or from source
git clone https://github.com/AceDataCloud/NanoBananaCli.git
cd NanoBananaCli
pip install -e .
3. Configure
# Set your API token
export ACEDATACLOUD_API_TOKEN=your_token_here
# Or use .env file
cp .env.example .env
# Edit .env with your token
4. Use
# Generate an image from a prompt
nano-banana-pro generate "A cat sitting on a windowsill at sunset, warm lighting"
# Generate with specific model and aspect ratio
nano-banana-pro generate "Product photo of a watch" -m nano-banana-pro -a 16:9 -r 4K
# Edit an image
nano-banana-pro edit "Make it look like an oil painting" -i https://example.com/photo.jpg
# Virtual try-on (combine person + clothing)
nano-banana-pro edit "Let this person wear this T-shirt" -i person.jpg -i shirt.jpg
# Check task status
nano-banana-pro task <task-id>
# Wait for completion with polling
nano-banana-pro wait <task-id> --interval 5
# List available models
nano-banana-pro models
Commands
Image Generation & Editing
| Command | Description |
|---|---|
nano-banana-pro generate <prompt> |
Generate an image from a text prompt |
nano-banana-pro edit <prompt> -i <url>... |
Edit or combine images using AI |
Task Management
| Command | Description |
|---|---|
nano-banana-pro task <task_id> |
Query a single task status |
nano-banana-pro tasks <id1> <id2>... |
Query multiple tasks at once |
nano-banana-pro wait <task_id> |
Wait for task completion with polling |
Utilities
| Command | Description |
|---|---|
nano-banana-pro models |
List available NanoBanana models |
nano-banana-pro aspect-ratios |
List available aspect ratios |
nano-banana-pro resolutions |
List available output resolutions |
nano-banana-pro config |
Show current configuration |
Global Options
--token TEXT API token (or set ACEDATACLOUD_API_TOKEN env var)
--version Show version
--help Show help message
Most commands support:
--json Output raw JSON (for piping/scripting)
--model TEXT NanoBanana model version (default: nano-banana)
Scripting & Piping
The --json flag outputs machine-readable JSON suitable for piping:
# Generate and extract task ID
TASK_ID=$(nano-banana-pro generate "a red circle" --json | jq -r '.task_id')
# Wait for completion and get image URL
nano-banana-pro wait $TASK_ID --json | jq -r '.data[0].image_url'
# Batch generate from a file of prompts
while IFS= read -r prompt; do
nano-banana-pro generate "$prompt" --json >> results.jsonl
done < prompts.txt
Available Models
| Model | Engine | Notes |
|---|---|---|
nano-banana |
Gemini 2.5 Flash | Fast, good quality (default) |
nano-banana-2 |
Improved | Better quality, balanced speed |
nano-banana-pro |
Gemini 3 Pro | Best quality, supports resolution control (1K/2K/4K) |
Aspect Ratios
| Ratio | Orientation |
|---|---|
1:1 |
Square (default) |
3:2 / 2:3 |
Classic photo |
16:9 / 9:16 |
Widescreen / Portrait |
4:3 / 3:4 |
Standard |
Configuration
Environment Variables
| Variable | Description | Default |
|---|---|---|
ACEDATACLOUD_API_TOKEN |
API token from AceDataCloud | Required |
ACEDATACLOUD_API_BASE_URL |
API base URL | https://api.acedata.cloud |
NANOBANANA_DEFAULT_MODEL |
Default model | nano-banana |
NANOBANANA_REQUEST_TIMEOUT |
Timeout in seconds | 1800 |
Development
Setup Development Environment
# Clone repository
git clone https://github.com/AceDataCloud/NanoBananaCli.git
cd NanoBananaCli
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # or `.venv\Scripts\activate` on Windows
# Install with dev dependencies
pip install -e ".[dev,test]"
Run Tests
# Run unit tests
pytest
# Run with coverage
pytest --cov=nanobanana_cli
# Run integration tests (requires API token)
pytest tests/test_integration.py -m integration
Code Quality
# Format code
ruff format .
# Lint code
ruff check .
# Type check
mypy nanobanana_cli
Build & Publish
# Install build dependencies
pip install -e ".[release]"
# Build package
python -m build
# Upload to PyPI
twine upload dist/*
Docker
# Pull the image
docker pull ghcr.io/acedatacloud/nano-banana-pro-cli:latest
# Run a command
docker run --rm -e ACEDATACLOUD_API_TOKEN=your_token \
ghcr.io/acedatacloud/nano-banana-pro-cli generate "A beautiful sunset"
# Or use docker-compose
docker compose run --rm nano-banana-pro-cli generate "A beautiful sunset"
Project Structure
NanoBananaCli/
├── nanobanana_cli/ # Main package
│ ├── __init__.py
│ ├── __main__.py # python -m nanobanana_cli entry point
│ ├── main.py # CLI entry point
│ ├── core/ # Core modules
│ │ ├── client.py # HTTP client for NanoBanana API
│ │ ├── config.py # Configuration management
│ │ ├── exceptions.py # Custom exceptions
│ │ └── output.py # Rich terminal formatting
│ └── commands/ # CLI command groups
│ ├── image.py # Image generation & editing commands
│ ├── task.py # Task management commands
│ └── info.py # Info & utility commands
├── tests/ # Test suite
├── .github/workflows/ # CI/CD (lint, test, publish to PyPI)
├── Dockerfile # Container image
├── deploy/ # Kubernetes deployment configs
├── .env.example # Environment template
├── pyproject.toml # Project configuration
└── README.md
NanoBanana CLI vs MCP NanoBanana
| Feature | NanoBanana CLI | MCP NanoBanana |
|---|---|---|
| Interface | Terminal commands | MCP protocol |
| Usage | Direct shell, scripts, CI/CD | Claude, VS Code, MCP clients |
| Output | Rich tables / JSON | Structured MCP responses |
| Automation | Shell scripts, piping | AI agent workflows |
| Install | pip install nano-banana-pro-cli |
pip install mcp-nanobanana-pro |
Both tools use the same AceDataCloud API and share the same API token.
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing) - Open a Pull Request
Development Requirements
- Python 3.10+
- Dependencies:
pip install -e ".[all]" - Lint:
ruff check . && ruff format --check . - Test:
pytest
License
This project is licensed under the MIT License — see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
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 nano_banana_pro_cli-2026.3.28.0.tar.gz.
File metadata
- Download URL: nano_banana_pro_cli-2026.3.28.0.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fb6c27a0c52c19f86273ad9eb809a24236df1b5ebef0d876586c66240629257
|
|
| MD5 |
40af15cfa2cd27f50d1ddfe9ac647d05
|
|
| BLAKE2b-256 |
de5381c53f2332efb02e9a44a03945f373cbc5a86203258ed0923c4aeef75a76
|
File details
Details for the file nano_banana_pro_cli-2026.3.28.0-py3-none-any.whl.
File metadata
- Download URL: nano_banana_pro_cli-2026.3.28.0-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbbe97c8bb7920141ce6519d519b04ae1a27f293da37490062151ee9835e7897
|
|
| MD5 |
93833233aaf1688741fe23abbe6313b9
|
|
| BLAKE2b-256 |
abcc033e3ee284dbcfaa50cefce994664c4be91ea95c57108d3d082d8b1b612e
|