Python Code Executor
Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries.
Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Run Python code
infsh app run infsh/python-executor --input '{
"code": "import pandas as pd\nprint(pd.__version__)"
}'
Install note: The install script only detects your OS/architecture, downloads the matching binary from dist.inference.sh, and verifies its SHA-256 checksum. No elevated permissions or background processes. Manual install & verification available.
App Details
| Property |
Value |
| App ID |
infsh/python-executor |
| Environment |
Python 3.10, CPU-only |
| RAM |
8GB (default) / 16GB (high_memory) |
| Timeout |
1-300 seconds (default: 30) |
Input Schema
{
"code": "print('Hello World!')",
"timeout": 30,
"capture_output": true,
"working_dir": null
}
Pre-installed Libraries
Web Scraping & HTTP
requests, httpx, aiohttp - HTTP clients
beautifulsoup4, lxml - HTML/XML parsing
selenium, playwright - Browser automation
scrapy - Web scraping framework
Data Processing
numpy, pandas, scipy - Numerical computing
matplotlib, seaborn, plotly - Visualization
Image Processing
pillow, opencv-python-headless - Image manipulation
scikit-image, imageio - Image algorithms
Video & Audio
moviepy - Video editing
av (PyAV), ffmpeg-python - Video processing
pydub - Audio manipulation
3D Processing
trimesh, open3d - 3D mesh processing
numpy-stl, meshio, pyvista - 3D file formats
Documents & Graphics
svgwrite, cairosvg - SVG creation
reportlab, pypdf2 - PDF generation
Examples
Web Scraping
infsh app run infsh/python-executor --input '{
"code": "import requests\nfrom bs4 import BeautifulSoup\n\nresponse = requests.get(\"https://example.com\")\nsoup = BeautifulSoup(response.content, \"html.parser\")\nprint(soup.find(\"title\").text)"
}'
Data Analysis with Visualization
infsh app run infsh/python-executor --input '{
"code": "import pandas as pd\nimport matplotlib.pyplot as plt\n\ndata = {\"name\": [\"Alice\", \"Bob\"], \"sales\": [100, 150]}\ndf = pd.DataFrame(data)\n\nplt.bar(df[\"name\"], df[\"sales\"])\nplt.savefig(\"outputs/chart.png\")\nprint(\"Chart saved!\")"
}'
Image Processing
infsh app run infsh/python-executor --input '{
"code": "from PIL import Image\nimport numpy as np\n\n# Create gradient image\narr = np.linspace(0, 255, 256*256, dtype=np.uint8).reshape(256, 256)\nimg = Image.fromarray(arr, mode=\"L\")\nimg.save(\"outputs/gradient.png\")\nprint(\"Image created!\")"
}'
Video Creation
infsh app run infsh/python-executor --input '{
"code": "from moviepy.editor import ColorClip, TextClip, CompositeVideoClip\n\nclip = ColorClip(size=(640, 480), color=(0, 100, 200), duration=3)\ntxt = TextClip(\"Hello!\", fontsize=70, color=\"white\").set_position(\"center\").set_duration(3)\nvideo = CompositeVideoClip([clip, txt])\nvideo.write_videofile(\"outputs/hello.mp4\", fps=24)\nprint(\"Video created!\")",
"timeout": 120
}'
3D Model Processing
infsh app run infsh/python-executor --input '{
"code": "import trimesh\n\nsphere = trimesh.creation.icosphere(subdivisions=3, radius=1.0)\nsphere.export(\"outputs/sphere.stl\")\nprint(f\"Created sphere with {len(sphere.vertices)} vertices\")"
}'
API Calls
infsh app run infsh/python-executor --input '{
"code": "import requests\nimport json\n\nresponse = requests.get(\"https://api.github.com/users/octocat\")\ndata = response.json()\nprint(json.dumps(data, indent=2))"
}'
File Output
Files saved to outputs/ are automatically returned:
# These files will be in the response
plt.savefig('outputs/chart.png')
df.to_csv('outputs/data.csv')
video.write_videofile('outputs/video.mp4')
mesh.export('outputs/model.stl')
Variants
# Default (8GB RAM)
infsh app run infsh/python-executor --input input.json
# High memory (16GB RAM) for large datasets
infsh app run infsh/python-executor@high_memory --input input.json
Use Cases
- Web scraping - Extract data from websites
- Data analysis - Process and visualize datasets
- Image manipulation - Resize, crop, composite images
- Video creation - Generate videos with text overlays
- 3D processing - Load, transform, export 3D models
- API integration - Call external APIs
- PDF generation - Create reports and documents
- Automation - Run any Python script
Important Notes
- CPU-only - No GPU/ML libraries (use dedicated AI apps for that)
- Safe execution - Runs in isolated subprocess
- Non-interactive - Use
plt.savefig() not plt.show()
- File detection - Output files are auto-detected and returned
Related Skills
# AI image generation (for ML-based images)
npx skills add inference-sh/skills@ai-image-generation
# AI video generation (for ML-based videos)
npx skills add inference-sh/skills@ai-video-generation
# LLM models (for text generation)
npx skills add inference-sh/skills@llm-models
Documentation
1---2name: python-executor-43description: Execute Python code in a safe sandboxed environment via [inference.sh](https://inference.sh). Pre-installed: NumPy, Pandas, Matplotlib, requests, BeautifulSoup, Selenium, Playwright, MoviePy, Pillow, OpenCV, trimesh, and 100+ more libraries. Use for: data processing, web scraping, image manipulation, video creation, 3D model processing, PDF generation, API calls, automation scripts. Triggers: python, execute code, run script, web scraping, data analysis, image processing, video editing, 3D models, automation, pandas, matplotlib4---56# Python Code Executor78Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries.9101112## Quick Start1314```bash15curl -fsSL https://cli.inference.sh | sh && infsh login1617# Run Python code18infsh app run infsh/python-executor --input '{19 "code": "import pandas as pd\nprint(pd.__version__)"20}'21```2223> **Install note:** The [install script](https://cli.inference.sh) only detects your OS/architecture, downloads the matching binary from `dist.inference.sh`, and verifies its SHA-256 checksum. No elevated permissions or background processes. [Manual install & verification](https://dist.inference.sh/cli/checksums.txt) available.2425## App Details2627| Property | Value |28|----------|-------|29| App ID | `infsh/python-executor` |30| Environment | Python 3.10, CPU-only |31| RAM | 8GB (default) / 16GB (high_memory) |32| Timeout | 1-300 seconds (default: 30) |3334## Input Schema3536```json37{38 "code": "print('Hello World!')",39 "timeout": 30,40 "capture_output": true,41 "working_dir": null42}43```4445## Pre-installed Libraries4647### Web Scraping & HTTP48- `requests`, `httpx`, `aiohttp` - HTTP clients49- `beautifulsoup4`, `lxml` - HTML/XML parsing50- `selenium`, `playwright` - Browser automation51- `scrapy` - Web scraping framework5253### Data Processing54- `numpy`, `pandas`, `scipy` - Numerical computing55- `matplotlib`, `seaborn`, `plotly` - Visualization5657### Image Processing58- `pillow`, `opencv-python-headless` - Image manipulation59- `scikit-image`, `imageio` - Image algorithms6061### Video & Audio62- `moviepy` - Video editing63- `av` (PyAV), `ffmpeg-python` - Video processing64- `pydub` - Audio manipulation6566### 3D Processing67- `trimesh`, `open3d` - 3D mesh processing68- `numpy-stl`, `meshio`, `pyvista` - 3D file formats6970### Documents & Graphics71- `svgwrite`, `cairosvg` - SVG creation72- `reportlab`, `pypdf2` - PDF generation7374## Examples7576### Web Scraping7778```bash79infsh app run infsh/python-executor --input '{80 "code": "import requests\nfrom bs4 import BeautifulSoup\n\nresponse = requests.get(\"https://example.com\")\nsoup = BeautifulSoup(response.content, \"html.parser\")\nprint(soup.find(\"title\").text)"81}'82```8384### Data Analysis with Visualization8586```bash87infsh app run infsh/python-executor --input '{88 "code": "import pandas as pd\nimport matplotlib.pyplot as plt\n\ndata = {\"name\": [\"Alice\", \"Bob\"], \"sales\": [100, 150]}\ndf = pd.DataFrame(data)\n\nplt.bar(df[\"name\"], df[\"sales\"])\nplt.savefig(\"outputs/chart.png\")\nprint(\"Chart saved!\")"89}'90```9192### Image Processing9394```bash95infsh app run infsh/python-executor --input '{96 "code": "from PIL import Image\nimport numpy as np\n\n# Create gradient image\narr = np.linspace(0, 255, 256*256, dtype=np.uint8).reshape(256, 256)\nimg = Image.fromarray(arr, mode=\"L\")\nimg.save(\"outputs/gradient.png\")\nprint(\"Image created!\")"97}'98```99100### Video Creation101102```bash103infsh app run infsh/python-executor --input '{104 "code": "from moviepy.editor import ColorClip, TextClip, CompositeVideoClip\n\nclip = ColorClip(size=(640, 480), color=(0, 100, 200), duration=3)\ntxt = TextClip(\"Hello!\", fontsize=70, color=\"white\").set_position(\"center\").set_duration(3)\nvideo = CompositeVideoClip([clip, txt])\nvideo.write_videofile(\"outputs/hello.mp4\", fps=24)\nprint(\"Video created!\")",105 "timeout": 120106}'107```108109### 3D Model Processing110111```bash112infsh app run infsh/python-executor --input '{113 "code": "import trimesh\n\nsphere = trimesh.creation.icosphere(subdivisions=3, radius=1.0)\nsphere.export(\"outputs/sphere.stl\")\nprint(f\"Created sphere with {len(sphere.vertices)} vertices\")"114}'115```116117### API Calls118119```bash120infsh app run infsh/python-executor --input '{121 "code": "import requests\nimport json\n\nresponse = requests.get(\"https://api.github.com/users/octocat\")\ndata = response.json()\nprint(json.dumps(data, indent=2))"122}'123```124125## File Output126127Files saved to `outputs/` are automatically returned:128129```python130# These files will be in the response131plt.savefig('outputs/chart.png')132df.to_csv('outputs/data.csv')133video.write_videofile('outputs/video.mp4')134mesh.export('outputs/model.stl')135```136137## Variants138139```bash140# Default (8GB RAM)141infsh app run infsh/python-executor --input input.json142143# High memory (16GB RAM) for large datasets144infsh app run infsh/python-executor@high_memory --input input.json145```146147## Use Cases148149- **Web scraping** - Extract data from websites150- **Data analysis** - Process and visualize datasets151- **Image manipulation** - Resize, crop, composite images152- **Video creation** - Generate videos with text overlays153- **3D processing** - Load, transform, export 3D models154- **API integration** - Call external APIs155- **PDF generation** - Create reports and documents156- **Automation** - Run any Python script157158## Important Notes159160- **CPU-only** - No GPU/ML libraries (use dedicated AI apps for that)161- **Safe execution** - Runs in isolated subprocess162- **Non-interactive** - Use `plt.savefig()` not `plt.show()`163- **File detection** - Output files are auto-detected and returned164165## Related Skills166167```bash168# AI image generation (for ML-based images)169npx skills add inference-sh/skills@ai-image-generation170171# AI video generation (for ML-based videos)172npx skills add inference-sh/skills@ai-video-generation173174# LLM models (for text generation)175npx skills add inference-sh/skills@llm-models176```177178## Documentation179180- [Running Apps](https://inference.sh/docs/apps/running) - How to run apps via CLI181- [App Code](https://inference.sh/docs/extend/app-code) - Understanding app execution182- [Sandboxed Code Execution](https://inference.sh/blog/tools/sandboxed-execution) - Safe code execution for agents