73
Points
15
Comments
agriyakhetarpal
Author

Top Comments

efromvtJun 14
Fantastic to have PyO3/Maturin guides too - the rust/python/typescript turducken I’ve always wanted.
simonwJun 13
I've been looking forward to this for ages!

This means we can now take any C/Rust/whatever extension for Python, compile that as a `.wasm` extension, and then load it directly in browser Pyodide projects using:

  await micropip.install("package-on-pypi")
  import package_name
Here's how to try the new feature out. Visit https://pyodide.org/en/stable/console.html and type:

  import micropip
  await micropip.install("pydantic_core")
  import pydantic_core
That gets you this WASM wheel: https://pypi.org/project/pydantic_core/#pydantic_core-2.47.0...

You can tell that it's got compiled code in (and not just Python) by running:

  pydantic_core._pydantic_core
I get this:

  <module 'pydantic_core._pydantic_core' from '/lib/python3.14/site-packages/pydantic_core/_pydantic_core.cpython-314-wasm32-emscripten.so'>
12_throw_awayJun 13
Executing normal python programs inside a cpython vm inside a wasm context inside a javascript process inside a sandbox inside a browser is - genuinely - extremely exciting! (Might as well run the browser inside a container inside a VM while you're at it though.)
wolfgangKJun 13
I presume this works (will work) also for JupyterLite that is based on Pyodide ? Would be great if it helped getting the latest OpenCV-python version [0] and it's dnn goodies being available on a zero-install client side Notebook !

[0] https://news.ycombinator.com/item?id=48421858

willXareJun 14
Python in the browser keeps sounding ridiculous right up until it works.
fzumsteinJun 13
Pyodide 314.0 is already available in xlwings Lite (the Python in Excel alternative you actually wanted).
runningmikeJun 13
Great news. And indeed a nice step to an even broader Python ecosystem.
sgammonJun 13
nice to see JS/python interop becoming a thing
Visit the Original Link

Read the full content on blog.pyodide.org

Source
blog.pyodide.org
Author
agriyakhetarpal
Posted
June 9, 2026 at 03:54 PM


More Top Stories

desfontain.es Jun 13
Noise infusion banned from statistical products published by Census Bureau
729459 commentsby nl
Details
twitter.com Jun 13
GLM 5.2 Is Out
337189 commentsby aloknnikhil
Details
tonsky.me Jun 13
Every Frame Perfect
554180 commentsby ravenical
Details
economist.com Jun 13
Treating pancreatic tumours may have revealed cancer's master switch
300106 commentsby andsoitis
Details
github.com Jun 11
FreeOberon – Open-Source, Cross-Platform, Free Pascal/Turbo Pascal-Like Language
162 commentsby peter_d_sherman
Details
phoronix.com Jun 13
ReactOS (FOSS "Windows") achieves 3D-accelerated Half-Life on real hardware
768 commentsby jeditobe
Details
👋 Need help with code?