Automatically execute code blocks within a Markdown file and update the output in-place
Project description
:rocket: Markdown Code Runner
markdown-code-runner
is a Python package that automatically executes code blocks within a Markdown file, including hidden code blocks, and updates the output in-place.
This package is particularly useful for maintaining Markdown files with embedded code snippets, ensuring that the output displayed is up-to-date and accurate.
It also enables the generation of content such as tables, plots, and other visualizations directly from the code.
The package is hosted on GitHub: https://github.com/basnijholt/markdown-code-runner
:star: Features
- :rocket: Automatically execute code blocks, including hidden code blocks, within a Markdown file
- :eyes: Allows hidden code blocks (i.e., code blocks that are not displayed in the Markdown file) to generate content like tables, plots, etc.
- :snake: :shell: Works with Python and Bash code blocks
- :white_check_mark: Keeps the output of the code blocks up-to-date
- :octocat: Easily integrates with GitHub Actions
- :tada: No external dependencies and works with Python 3.7+
- :globe_with_meridians: Execute all languages by using the file code blocks and executing it with bash (see Rust :crab: example)
:question: Problem Statement
When creating Markdown files with code examples, it's essential to keep the output of these code snippets accurate and up-to-date. Manually updating the output can be time-consuming and error-prone, especially when working with large files or multiple collaborators. In addition, there might be cases where hidden code blocks are needed to generate content such as tables, plots, and other visualizations without displaying the code itself in the Markdown file.
markdown-code-runner
solves this problem by automatically executing the code blocks, including hidden ones, within a Markdown file and updating the output in-place.
This ensures that the displayed output is always in sync with the code, and content generated by hidden code blocks is seamlessly integrated.
:books: Table of Contents
- :computer: Installation
- :rocket: Quick Start
- :snake: Python API
- :book: Examples
- :bulb: Usage Ideas
- :gear: Idea 1: Continuous Integration with GitHub Actions
- :computer: Idea 2: Show command-line output
- :bar_chart: Idea 3: Generating Markdown Tables
- :art: Idea 4: Generating Visualizations
- :page_facing_up: Idea 5: Generating a table from CSV data
- :star: Idea 5: Displaying API data as a list
- :crab: Idea 6: Run a Rust program
- :page_with_curl: License
- :handshake: Contributing
:computer: Installation
Install markdown-code-runner
via pip:
pip install markdown-code-runner
:rocket: Quick Start
To get started with markdown-code-runner
, follow these steps:
-
Add code blocks to your Markdown file using either of the following methods:
Method 1 (show your code): Use a triple backtick code block with the language specifier
python markdown-code-runner
.Example:
```python markdown-code-runner print('Hello, world!') ``` (Optionally, you can place some text between the code block and the output markers) <!-- OUTPUT:START --> This content will be replaced by the output of the code block above. <!-- OUTPUT:END -->
or for Bash:
```bash markdown-code-runner echo 'Hello, world!' ``` (Optionally, you can place some text between the code block and the output markers) <!-- OUTPUT:START --> This content will be replaced by the output of the code block above. <!-- OUTPUT:END -->
Method 2 (hide your code): Place the code between
<!-- CODE:START -->
and<!-- CODE:END -->
markers. Add the output markers<!-- OUTPUT:START -->
and<!-- OUTPUT:END -->
where you want the output to be displayed.Example:
This is an example code block: <!-- CODE:START --> <!-- print('Hello, world!') --> <!-- CODE:END --> <!-- OUTPUT:START --> This content will be replaced by the output of the code block above. <!-- OUTPUT:END -->
or for Bash:
This is an example code block: <!-- CODE:BASH:START --> <!-- MY_VAR="Hello, World!" --> <!-- echo $MY_VAR --> <!-- CODE:END --> <!-- OUTPUT:START --> This content will be replaced by the output of the code block above. <!-- OUTPUT:END -->
-
Run
markdown-code-runner
on your Markdown file:markdown-code-runner /path/to/your/markdown_file.md
-
The output of the code block will be automatically executed and inserted between the output markers.
:snake: Python API
To use markdown-code-runner
, simply import the update_markdown_file
function from the package and call it with the path to your Markdown file:
from markdown_code_runner import update_markdown_file
update_markdown_file("path/to/your/markdown_file.md")
:book: Examples
Here are a few examples demonstrating the usage of markdown-code-runner
:
:star: Example 1: Simple code block
This is an example of a simple hidden code block:
<!-- CODE:START -->
<!-- print('Hello, world!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
This content will be replaced by the output of the code block above.
<!-- OUTPUT:END -->
After running markdown-code-runner
:
This is an example of a simple code block:
<!-- CODE:START -->
<!-- print('Hello, world!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
<!-- ⚠️ This content is auto-generated by `markdown-code-runner`. -->
Hello, world!
<!-- OUTPUT:END -->
:star: Example 2: Multiple code blocks
Here are two code blocks:
First code block:
<!-- CODE:START -->
<!-- print('Hello, world!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
This content will be replaced by the output of the first code block.
<!-- OUTPUT:END -->
Second code block:
<!-- CODE:START -->
<!-- print('Hello again!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
This content will be replaced by the output of the second code block.
<!-- OUTPUT:END -->
After running markdown-code-runner
:
Here are two code blocks:
First code block:
<!-- CODE:START -->
<!-- print('Hello, world!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
<!-- ⚠️ This content is auto-generated by `markdown-code-runner`. -->
Hello, world!
<!-- OUTPUT:END -->
Second code block:
<!-- CODE:START -->
<!-- print('Hello again!') -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
<!-- ⚠️ This content is auto-generated by `markdown-code-runner`. -->
Hello again!
<!-- OUTPUT:END -->
:bulb: Usage Ideas
Markdown Code Runner can be used for various purposes, such as creating Markdown tables, generating visualizations, and showcasing code examples with live outputs. Here are some usage ideas to get you started:
:gear: Idea 1: Continuous Integration with GitHub Actions
You can use markdown-code-runner
to automatically update your Markdown files in a CI environment.
The following example demonstrates how to configure a GitHub Actions workflow that updates your README.md
whenever changes are pushed to the main
branch.
-
Create a new workflow file in your repository at
.github/workflows/markdown-code-runner.yml
. -
Add the following content to the workflow file:
name: Update README.md
on:
push:
branches:
- main
pull_request:
jobs:
update_readme:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install markdown-code-runner
run: |
python -m pip install --upgrade pip
pip install markdown-code-runner
# Install dependencies you're using in your README.md
- name: Install other Python dependencies
run: |
pip install pandas tabulate pytest matplotlib requests
# Rust is only needed for an example in our README.md
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Run update-readme.py
run: markdown-code-runner --verbose README.md
- name: Commit updated README.md
id: commit
run: |
git add README.md
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
if git diff --quiet && git diff --staged --quiet; then
echo "No changes in README.md, skipping commit."
echo "commit_status=skipped" >> $GITHUB_ENV
else
git commit -m "Update README.md"
echo "commit_status=committed" >> $GITHUB_ENV
fi
- name: Push changes
if: env.commit_status == 'committed'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}
- Commit and push the workflow file to your repository. The workflow will now automatically run whenever you push changes to the
main
branch, updating yourREADME.md
with the latest outputs from your code blocks.
For more information on configuring GitHub Actions, check out the official documentation.
:computer: Idea 2: Show command-line output
Use markdown-code-runner
to display the output of a command-line program. For example, the following Markdown file shows the helper options of this package.
Using a backtick bash code block:
export PATH=~/micromamba/bin:$PATH
echo '```bash'
markdown-code-runner --help
echo '```'
Which is rendered as:
usage: markdown-code-runner [-h] [-o OUTPUT] [-d] [-v] input
Automatically update Markdown files with code block output.
positional arguments:
input Path to the input Markdown file.
options:
-h, --help show this help message and exit
-o OUTPUT, --output OUTPUT
Path to the output Markdown file. (default: overwrite
input file)
-d, --verbose Enable debugging mode (default: False)
-v, --version show program's version number and exit
:bar_chart: Idea 3: Generating Markdown Tables
Use the pandas
library to create a Markdown table from a DataFrame. The following example demonstrates how to create a table with random data:
import pandas as pd
import numpy as np
# Generate random data
np.random.seed(42)
data = np.random.randint(1, 101, size=(5, 3))
# Create a DataFrame and column names
df = pd.DataFrame(data, columns=["Column A", "Column B", "Column C"])
# Convert the DataFrame to a Markdown table
print(df.to_markdown(index=False))
Which is rendered as:
Column A | Column B | Column C |
---|---|---|
52 | 93 | 15 |
72 | 61 | 21 |
83 | 87 | 75 |
75 | 88 | 100 |
24 | 3 | 22 |
:art: Idea 4: Generating Visualizations
Create a visualization using the matplotlib
library and save it as an image. Then, reference the image in your Markdown file. The following example demonstrates how to create a bar chart.
Using a triple-backtick code block:
import matplotlib.pyplot as plt
import io
import base64
from urllib.parse import quote
# Example data for the plot
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# Create a simple line plot
plt.plot(x, y)
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.title("Sample Line Plot")
# Save the plot to a BytesIO buffer
buf = io.BytesIO()
plt.savefig(buf, format='png')
plt.close()
# Encode the buffer as a base64 string
data = base64.b64encode(buf.getvalue()).decode('utf-8')
# Create an inline HTML img tag with the base64 string
from urllib.parse import quote
img_html = f'<img src="data:image/png;base64,{quote(data)}" alt="Sample Line Plot"/>'
print(img_html)
:information_source: NOTE: This output is disabled here because GitHub Markdown doesn't support inline image HTML. This will work on other Markdown renderers.
:page_facing_up: Idea 5: Generating a table from CSV data
Suppose you have a CSV file containing data that you want to display as a table in your Markdown file.
You can use pandas
to read the CSV file, convert it to a DataFrame, and then output it as a Markdown table.
Using a triple-backtick code block:
import pandas as pd
csv_data = "Name,Age,Score\nAlice,30,90\nBob,25,85\nCharlie,22,95"
with open("sample_data.csv", "w") as f:
f.write(csv_data)
df = pd.read_csv("sample_data.csv")
print(df.to_markdown(index=False))
Which is rendered as:
Name | Age | Score |
---|---|---|
Alice | 30 | 90 |
Bob | 25 | 85 |
Charlie | 22 | 95 |
:star: Idea 5: Displaying API data as a list
You can use markdown-code-runner
to make API calls and display the data as a list in your Markdown file.
In this example, we'll use the requests
library to fetch data from an API and display the results as a list.
Using a hidden code block:
<!-- CODE:START -->
<!-- import requests -->
<!-- response = requests.get("https://jsonplaceholder.typicode.com/todos?_limit=5") -->
<!-- todos = response.json() -->
<!-- for todo in todos: -->
<!-- print(f"- {todo['title']} (User ID: {todo['userId']}, Completed: {todo['completed']})") -->
<!-- CODE:END -->
<!-- OUTPUT:START -->
<!-- OUTPUT:END -->
Which is rendered as:
- delectus aut autem (User ID: 1, Completed: False)
- quis ut nam facilis et officia qui (User ID: 1, Completed: False)
- fugiat veniam minus (User ID: 1, Completed: False)
- et porro tempora (User ID: 1, Completed: True)
- laboriosam mollitia et enim quasi adipisci quia provident illum (User ID: 1, Completed: False)
:crab: Idea 6: Run a Rust program
We can use markdown-code-runner
to write Rust code to a file and then a hidden bash code block to run the code and display the output.
The code below is actually executed, check out the README.md
in plain text to see how this works.
fn main() {
println!("Hello, world!");
}
Which when executed produces:
Hello, world!
These are just a few examples of how you can use Markdown Code Runner to enhance your Markdown documents with dynamic content. The possibilities are endless!
:page_with_curl: License
markdown-code-runner
is released under the MIT License. Please include the LICENSE file when using this package in your project, and cite the original source.
:handshake: Contributing
Contributions are welcome! To contribute, please follow these steps:
- Fork the repository on GitHub: https://github.com/basnijholt/markdown-code-runner
- Create a new branch for your changes.
- Make your changes, ensuring that they adhere to the code style and guidelines.
- Submit a pull request with a description of your changes.
Please report any issues or bugs on the GitHub issue tracker: https://github.com/basnijholt/markdown-code-runner/issues
Thank you for your interest in markdown-code-runner
!
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
Hashes for markdown-code-runner-2.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | aecc56121ebeccb2a9a74ea818783486cb3a6457ec5da9ee2a64a4fc8833bcf9 |
|
MD5 | 69e60c3909982a61085fbe49b38ab789 |
|
BLAKE2b-256 | 5e807d1e0dc47a3bfcbf6777281a472b98fea78a3b60dd809f916875e773173b |
Hashes for markdown_code_runner-2.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff439a8c54a7e24d66657d68d342e8cea703ec56f21b31e7f08bbd7d9e241337 |
|
MD5 | 89847d7afaea8f73f3ab8484fd41fe86 |
|
BLAKE2b-256 | 50ba7e2c2088135272059bb33d3324a58cd19550b6bc629a9d249efc6134ffdf |