It uses Pyodide to execute Python in the browser using WebAssembly.
Show HN: Online Python Compiler with Libraries
1–10 of 21 posts
Re: Show HN: Online Python Compiler with Libraries
#2 import requests
r = requests.get('https://theonion.com')
print(r.text)
Hmm, I wonder if you could use subprocess to fetch and run any binary. What kind of sandbox is this running in, and what are the limits?Running arbitrary untrusted code seems like a potential security issue.
Edit: @porridgeraisin Got it, thanks! Does this mean outbound http requests only work with domains that support arbitrary requests via `Access-Control-Allow-Origin: *` ?
Re: Show HN: Online Python Compiler with Libraries
#3Re: Show HN: Online Python Compiler with Libraries
#4import requests r = requests.get('https://theonion.com') print(r.text) Hmm, I wonder if you could use subprocess to fetch and run any binary. What kind of sandbox is this running in, and what are the limits? Running arbitrary untrusted code seems like a potential security issue. Edit: @porridgeraisin Got it, thanks! Does this mean outbound http requests only work with domains that support arbitrary requests via `Acce…
Re: Show HN: Online Python Compiler with Libraries
#5It reminds me a bit of marimo: https://docs.marimo.io/guides/publishing/
Re: Show HN: Online Python Compiler with Libraries
#6import requests r = requests.get('https://theonion.com') print(r.text) Hmm, I wonder if you could use subprocess to fetch and run any binary. What kind of sandbox is this running in, and what are the limits? Running arbitrary untrusted code seems like a potential security issue. Edit: @porridgeraisin Got it, thanks! Does this mean outbound http requests only work with domains that support arbitrary requests via `Acce…
It runs on pyodide, i.e, a wasm interpreter that runs entirely in your browser.
Re: Show HN: Online Python Compiler with Libraries
#7Re: Show HN: Online Python Compiler with Libraries
#8Hi, great project! Can you add the library pylan? https://pypi.org/project/pylan-lib/
- Click on the Clip name (the default one is 'Use Python Libraries') - Click 'Manage packages' - Enter 'pylan-lib' and Click 'Add' - Click 'Run'
The package will be installed, and the code will run!
The list of libraries is only a small subset of the compatible libraries - I should make that way clearer.
Re: Show HN: Online Python Compiler with Libraries
#9import requests r = requests.get('https://theonion.com') print(r.text) Hmm, I wonder if you could use subprocess to fetch and run any binary. What kind of sandbox is this running in, and what are the limits? Running arbitrary untrusted code seems like a potential security issue. Edit: @porridgeraisin Got it, thanks! Does this mean outbound http requests only work with domains that support arbitrary requests via `Acce…
So, yes, sadly, network requests only work with domains with Access-Control-Allow-Origin: *. I'm looking at adding a backend CORS proxy to fix this.
We also have a Chrome extension with no CORS limitation. The extension lets you right-click Python code snippets on basically any site (Claude, ChatGPT, Deepseek etc.) to run it instantly.
https://chromewebstore.google.com/detail/python-code-runner/...
Re: Show HN: Online Python Compiler with Libraries
#10Hi, great project! Can you add the library pylan? https://pypi.org/project/pylan-lib/
Yes! To use pylan: - Click on the Clip name (the default one is 'Use Python Libraries') - Click 'Manage packages' - Enter 'pylan-lib' and Click 'Add' - Click 'Run' The package will be installed, and the code will run! The list of libraries is only a small subset of the compatible libraries - I should make that way clearer.