You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Full Python 3.14 runtime for iOS/iPadOS with 30+ offline libraries. Everything runs locally on-device — no internet, no server, no JIT. App Store safe.
Languages
Language
Runtime
Notes
Python 3.14
BeeWare embedded CPython
Native C extensions (.so → .fwork)
C
Tree-walking interpreter (3,450 lines)
48 operators, structs, pointers, preprocessor
C++
Tree-walking interpreter (4,200 lines)
Classes, STL, templates, inheritance
Fortran
Tree-walking interpreter (4,100 lines)
Modules, allocatable arrays, intrinsics
All four share the same Monaco-based code editor (WKWebView) with IntelliSense (keyword snippets, signature help, hover docs, resolve-from-Python completions for numpy / scipy / sklearn / matplotlib / sympy) and debounced auto-save (flushes to disk ~600 ms after the last keystroke, plus on run / tab-switch / view-disappear / app-backgrounding).
SVG → PNG/PDF/PS. Works in CodeBench; needs manual libcairo.dylib + find_library shim in other apps — see cairosvg.md
Local LaTeX (offlinai_latex module)
SwiftMath + 33 MB texmf
Math-mode LaTeX via SwiftMath (unlimited). \documentclass-level pdflatex gated off — bundled lib-tex v1.40.20 crashes; see LaTeX docs
Data & Web
Library
Version
Type
Description
requests
—
Pure Python
HTTP client: GET, POST, sessions, auth, JSON
BeautifulSoup4
4.14.3
Pure Python
HTML/XML parsing and scraping
NetworkX
3.6.1
Pure Python
Graph theory: 200+ algorithms, generators
jsonschema
4.26.0
Pure Python
JSON Schema validation (Draft 7)
PyYAML
6.0.3
Native
YAML parsing and serialization
Web frameworks (run dashboards on-device)
All five are bundled with iOS-specific patches so Ctrl+C / Stop works,
debug mode doesn't crash on missing _multiprocessing, and the
preview panel auto-loads the running server URL. Click any library
name for its detailed module list. See web-stack.md
for the cross-library iOS patches and feature tests.