Skip to main content

A local-first notebook system for Python, inspired by Clerk for Clojure

Project description

Plaque

A local-first notebook system for Python, inspired by Clerk for Clojure. Plaque turns regular Python files into interactive notebooks with real-time updates and smart dependency tracking.

Features

  • Local-first: Uses plain Python files as the source - and your own editor - no special file formats
  • Live Updates: Browser preview updates in real-time as you edit
  • Rich Output: Supports Markdown, LaTeX equations, plots, DataFrames, and more
  • Flexible Format: Supports both # %% markers and multiline comments for cells
  • Python-native: Use standard Python syntax for both code and documentation

Principles

Many systems support reactive notebooks, like clerk, marimo, observable, pluto, etc. Plaque is meant to be a simple thing that provides 80% of the utility with a very simple package. The core idea is that your files should only run as they would if you ran them from scratch from top to bottom, but we don't actually have to rerun every cell every time. Instead, we only ever re-execute any cell you modify and any cells later in the document.

In this way, you can have most of the benefits for reactivity and live updating, but still get caching and some gaurentee that you don't have to re-evaluate expensive computations.

Usage

Plaque supports two different styles for creating notebooks:

1. Traditional Cell Markers

Using # %% markers, similar to VS Code notebooks:

# Code cell
x = 42
print(f"The answer is {x}")

# %% [markdown]
# # This is a markdown cell
#
# With support for:
# - Lists
# - **Bold text**
# - And more!

# %%
# Another code cell
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 4, 9])
plt.show()

2. Multiline Comments as Cells

Using Python's multiline strings (""" or ''') for documentation:

"""
# Getting Started

This notebook demonstrates using multiline comments as markdown cells.
All standard markdown features are supported:

1. **Bold text**
2. *Italic text*
3. Code blocks
4. LaTeX equations: $E = mc^2$
"""

# Code is automatically treated as a code cell
x = 42
print(f"The answer is {x}")

"""
## Data Visualization

Now let's make a plot:
"""

import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 4, 9])
plt.show()

"""
The plot shows a quadratic relationship between x and y.
"""

3. F-style Top Level Comments (Programmatic Templates)

Using f-string style comments for programmatic templated output:

f"""
# Dynamic Report for {dataset_name}

Results generated on {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}

## Summary Statistics
- Total samples: {len(data)}
- Mean value: {np.mean(data):.2f}
- Standard deviation: {np.std(data):.2f}
"""

dataset_name = "Sales Data Q4"
data = [1, 2, 3, 4, 5]

f"""
## Analysis Results

The dataset '{dataset_name}' contains {len(data)} data points.
Maximum value observed: {max(data)}
"""

F-style comments allow you to create dynamic markdown cells that incorporate variables and expressions, making them perfect for automated reports and templated notebooks.

Both styles support:

  • Markdown formatting with bold, italic, lists, etc.
  • LaTeX equations (both inline and display)
  • Code syntax highlighting
  • Rich output (plots, DataFrames, etc.)

Guidelines for Multiline Comments

When using multiline comments as cells:

  1. Top-level comments become markdown cells
  2. Function/method docstrings remain as code
  3. You can mix code and documentation freely
  4. Both """ and ''' are supported

Installation

You can install Plaque using either pip or uv:

Install from PyPI

# Using pip
pip install plaque

# Using uv (recommended)
uv pip install plaque

Local Development

# Clone the repository
git clone https://github.com/alexalemi/plaque.git
cd plaque

# Install in development mode
uv pip install -e .
# or
pip install -e .

Development Setup with Dependencies

For development work with testing and additional tools:

# Clone the repository
git clone https://github.com/alexalemi/plaque.git
cd plaque

# Create and activate a virtual environment (optional)
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install with development dependencies
uv pip install -e ".[dev]"
# or
pip install -e ".[dev]"

Running a Notebook

To render a notebook:

# Generate static HTML
plaque render my_notebook.py

# Generate static HTML with custom output path
plaque render my_notebook.py output.html

# Start a live re-render with caching.
plaque watch my_notebook.py

# Start live server with auto-reload
plaque serve my_notebook.py

# Specify a custom port (default is 5000)
plaque serve my_notebook.py --port 8000

# Open browser automatically
plaque serve my_notebook.py --open

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plaque-0.3.0.tar.gz (137.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plaque-0.3.0-py3-none-any.whl (33.8 kB view details)

Uploaded Python 3

File details

Details for the file plaque-0.3.0.tar.gz.

File metadata

  • Download URL: plaque-0.3.0.tar.gz
  • Upload date:
  • Size: 137.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.21

File hashes

Hashes for plaque-0.3.0.tar.gz
Algorithm Hash digest
SHA256 dc2f1314c612583c1ec924d0dbfc415a6777aa8b1f55e3062dc93e76c9095096
MD5 8f65be310d8fcc6e260975c8719caa75
BLAKE2b-256 62c83b2bc7562a44724c335af9346ab179492de904068e1f9fb1544a074e20a6

See more details on using hashes here.

File details

Details for the file plaque-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: plaque-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 33.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.21

File hashes

Hashes for plaque-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d5cafd98883405f543a6e56826f1a427a3e6b04651cf699c0944cc69ddaaf86b
MD5 f183b4723c5defb3850724c5ab243691
BLAKE2b-256 47f071a8a6c1667da232f15c23ee528e98474015593ee4dbfba79b5ab0c05938

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page