Skip to main content

A core library to synchronize Jupyter notebooks and Markdown documents, enabling seamless integration and dynamic content execution

Project description

nbsync

PyPI Version Python Version Build Status Coverage Status

Connect Jupyter notebooks and Markdown documents

nbsync is a core library that seamlessly bridges Jupyter notebooks and Markdown documents, enabling dynamic content synchronization and execution.

Why Use nbsync?

The Documentation Challenge

Data scientists, researchers, and technical writers face a common dilemma:

  • Development happens in notebooks - ideal for experimentation and visualization
  • Documentation lives in markdown - perfect for narrative and explanation
  • Connecting the two is painful - screenshots break, exports get outdated

Our Solution

nbsync creates a live bridge between your notebooks and markdown documents by:

  • Keeping environments separate - work in the tool best suited for each task
  • Maintaining connections - reference specific figures from notebooks
  • Automating updates - changes to notebooks reflect in documentation

Key Benefits

  • True Separation of Concerns: Develop visualizations in Jupyter notebooks and write documentation in markdown files, with each tool optimized for its purpose.

  • Intuitive Markdown Syntax: Use standard image syntax with a simple extension to reference notebook figures: ![alt text](notebook.ipynb){#figure-id}

  • Automatic Updates: When you modify your notebooks, your documentation updates automatically.

  • Clean Source Documents: Your markdown remains readable and focused on content, without code distractions or complex embedding techniques.

  • Enhanced Development Experience: Take advantage of IDE features like code completion and syntax highlighting in the appropriate environment.

Quick Start

1. Installation

pip install nbsync

2. Basic Usage

from nbsync.sync import Synchronizer
from nbstore import Store

# Initialize with a notebook store
store = Store("path/to/notebooks")
sync = Synchronizer(store)

# Process markdown with notebook references
markdown_text = """
# My Document

![Chart description](my-notebook.ipynb){#my-figure}
"""

# Convert markdown with notebook references to final output
for element in sync.convert(markdown_text):
    # Process each element (string or Cell objects)
    print(element)

3. Mark Figures in Your Notebook

In your Jupyter notebook, identify figures with a comment:

# #my-figure
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(8, 4))
ax.plot([1, 2, 3, 4], [10, 20, 25, 30])

4. Reference in Markdown

Use standard Markdown image syntax with the figure identifier:

![Chart description](my-notebook.ipynb){#my-figure}

The Power of Separation

Creating documentation and developing visualizations involve different workflows and timeframes. When building visualizations in Jupyter notebooks, you need rapid cycles of execution, verification, and modification.

nbsync is designed specifically to address these separation of concerns, allowing you to:

  • Focus on code in notebooks without documentation distractions
  • Focus on narrative in markdown without code interruptions
  • Maintain powerful connections between both environments

Each environment is optimized for its purpose, while nbsync handles the integration automatically.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the MIT License.

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

nbsync-0.3.2.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

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

nbsync-0.3.2-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file nbsync-0.3.2.tar.gz.

File metadata

  • Download URL: nbsync-0.3.2.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.6.16

File hashes

Hashes for nbsync-0.3.2.tar.gz
Algorithm Hash digest
SHA256 0f84171f30944bad6f98d2a8261c7e9709aac00c4e357151f3a89f9fd7ca77dd
MD5 ca4590d7ebf3df17fd5ae7933bb3a68c
BLAKE2b-256 a57ca33b7b9fd34ecdd43cc45037dba600273dc471d95dbfe98e49680c1ee478

See more details on using hashes here.

File details

Details for the file nbsync-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: nbsync-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.6.16

File hashes

Hashes for nbsync-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b30832ac39e2ac537dbf9849a4786b821ef321d5e7bafae20fae2bb86b2ca033
MD5 eeae604972f82d77627c1c01d4a3bd7f
BLAKE2b-256 65a29107466175c3251fc008405f4ec5ebd46f8da9c141ce0b46529ca2a4698c

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