Documentation Index
Fetch the complete documentation index at: https://edgepython.com/llms.txt
Use this file to discover all available pages before exploring further.
Run it
Edge Python ships as a WebAssembly module. The fastest way to try it is the playground β no install, runs entirely client-side via WebAssembly. Open the playground ->Embed it
To run Edge Python in your own host (browser app, server, edge runtime), you need two artifacts:- The compiler module:
compiler_lib.wasm(~130 KB). - A loader for your platform β the canonical browser loader is
demo/edge.js; WASI hosts wire it up via their runtimeβs import API.
Your first program
Open the playground and paste:Output
A taste of the language
Edge Python is a functional subset of Python 3.13. Functions are first-class values. Lambdas, currying, higher-order functions, and comprehensions are central.Output
Whatβs next
What it is
Scope, paradigm, and what intentionally isnβt supported.
Syntax
Operators, literals, and the language surface.
Built-ins
Every built-in function with examples and outputs.
Methods
String, list, and dict methods.