CourseCamp

In-browser Python

Write code. Click Run. See it.

Python 3.12 in your browser. No install. Packages, charts, and a real editor — on warm paper.

3.12

Python

300+

Packages

0ms

Server trips

100%

Private run

Preview · open full editor

CourseCamp Python Playground editor

The compiler, without the circus

Write, run, and share Python in the browser.

Instant execution

Code runs locally via Pyodide. No server round-trips.

PyPI packages

Import NumPy, Pandas, Requests — micropip installs on first run.

Charts

Matplotlib, Plotly, and Pillow render in the Output panel.

Multi-file

Several files, imports between them, same as a real project.

Shareable URLs

One link. Anyone can view and run the project.

Private run

Execution never leaves the browser.

Install a package. Just import it.

Unlike toy compilers, this one talks to PyPI through micropip.

Try it free
# Auto-installs on first import
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 2 * np.pi, 100)
plt.plot(x, np.sin(x))
plt.show()

Questions

Is this free?

Yes. Sign in to keep projects; anonymous ones last 30 days.

Which Python?

Python 3.12 via Pyodide, full standard library.

Pip packages?

Pure-Python wheels from PyPI, installed on import.

Is my code private?

Runs stay in the browser. Files hit the server only when you save or share.