Welcome to the PyVibe Playground!

This playground uses Pyodide to run Python code in the browser. You can use it to experiment with PyVibe and learn how to use it. Note that this is experimental and may not work in all browsers.

Install PyVibe to run locally
% pip install pyvibe
import pyvibe as pv page = pv.Page('Test Page') with page.add_card() as card: card.add_header("Hello World") card.add_text("This content was generated with Python (from the browser)!")
A preview will appear here once you click run.

Learn how to serve from Flask