Features
- Create matplotlib plots locally in the browser
- Python code execution with Pyodide
- Live plot rendering and terminal output
- No data upload - all visualization happens client-side
- Export and share your visualizations
Create data visualizations with Python and Matplotlib locally in your browser. Write Python code, see terminal output, and view your plots instantly. Powered by Pyodide for client-side execution.
import matplotlib.pyplot as plt
import numpy as np
# Create data
x = np.linspace(0, 10, 100)
y = np.sin(x)
# Plot
plt.plot(x, y)
plt.title("Sine Wave")
plt.grid(True)