A core library to synchronize Jupyter notebooks and Markdown documents, enabling seamless integration and dynamic content execution
Project description
nbsync
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:
{#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
{#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:
{#my-figure}
Control how results render
You can control how executed outputs render using attributes:
source: where to place the source relative to the result. Supported values includeon/1(above),below,only,material-block,tabbed-left,tabbed-right. See tests for details.result: wrap the execution result in a fenced code block using the given language (similar to mkdocs-exec). For example:
```python exec="1" result="text"
print(2)
```
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nbsync-0.4.0.tar.gz.
File metadata
- Download URL: nbsync-0.4.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74eaf3c198c2f05e5c79245952b9de28007c038333feed479bc85a16d4ca66c7
|
|
| MD5 |
af0b8e613e19e7d5304d0ea29a52fd53
|
|
| BLAKE2b-256 |
b2b4620671ed2f20dceb941a5009db4b8ddbba8551d9d4406bb75ebba7840928
|
File details
Details for the file nbsync-0.4.0-py3-none-any.whl.
File metadata
- Download URL: nbsync-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dba9afcf1cbdabf010388de4a04c9c2c9e641dfe0aad867a10e32a79e1a8bdd
|
|
| MD5 |
4902b08bd3d4994f9eda60e29f57d9b3
|
|
| BLAKE2b-256 |
81086fcbd7ef0f1bd98da226d5c9dae2a4fbb27b648b78e1f295bbcffb9428f5
|