Skip to main content

run python code blocks in markdown code

Project description

PyPI CICD Downloads

pandoc-run-python

This is a Pandoc filter!

More specifically it is a filter that allows you to run Python code blocks in your markdown and insert the output of them back into your markdown file. It exists because I enjoy literate programming too much.

It supports capturing the following output of Python code blocks:

  • anything printed to stdout
  • matplotlib-based figures

Warning 🚨

Make sure that you trust the Python code in your markdown files, they will be executed as-is. A cell with content like os.system("sudo rm -rf /") would be painful. In other words, if at any point in the future I send you a markdown file called money_factory.md you should NOT run it.

How to install

pip install pandoc-run-python

Also check out the notes on auto-formatting for information on how to install black as a dependency.

What does it do?

Let's say you have the following markdown file:

## What is fast, loud and crunchy?

```python
print("A rocket chip!")
```

When you use this as en example to explain what the output of this print statement would be, you'd probably don't want to type the expected output of this command manually. Ideally you want it to be actually evaluated and the output inserted into the markdown file. This way you would automatically end up with something like this:

## What is fast, loud and crunchy?

```python
print("A rocket chip!")
```

```
A rocket chip!
```

pandoc-run-python to the rescue!

Coincidentally, the above is exactly what the pandoc-run-python filter provides. How can you achieve this? You need to slightly alter your markdown to specify that a python codeblock needs to be evaluated. More specifically you need to add classes to the codeblock as we did below (I don't like the syntax neither, but this is the pandoc way to do it).

## What is fast, loud and crunchy?

``` {.python .run}
print("A rocket chip!")
```

If the previous example would be in a file call loud.md, using this pandoc filter you could execute the following command to generate the processed markdown.

pandoc loud.md -F pandoc-run-python -t markdown
## What is fast, loud and crunchy?

``` {.python .run}
print("A rocket chip!")
```

``` {.python-output}
A rocket chip!
```

Auto-formatting

By default, black is run on all code chunks that have the python class, also those that do not have the run class. You can avoid this auto-formatting behaviour by adding the no-black class to the code chunk.

However, black is an optional dependency. If it cannot be imported code formatting will be skipped. You can install this package also together with black by running pip install pandoc-run-python[black].

Code chunk configuration

This filter runs on all code chunks that has at least the python and run class.

The following classes are used to determine filter logic:

  • python and run: evaluate code and insert output in a new codeblock / image below the original python codeblock
  • no-black: skip running of the black formatter on python code chunks

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

pandoc_run_python-0.1.25.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

pandoc_run_python-0.1.25-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file pandoc_run_python-0.1.25.tar.gz.

File metadata

  • Download URL: pandoc_run_python-0.1.25.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for pandoc_run_python-0.1.25.tar.gz
Algorithm Hash digest
SHA256 4a66e3a1054ae9a324067fb7ccdfd551644bf696250cdbd8b75855878e451c36
MD5 8031c4e9f550a5d9c7d626c3d52401d7
BLAKE2b-256 cdcb8aedc6233f9fe43a20a4ed5b205bf847161a25a75018662fcf44da4de8db

See more details on using hashes here.

File details

Details for the file pandoc_run_python-0.1.25-py3-none-any.whl.

File metadata

File hashes

Hashes for pandoc_run_python-0.1.25-py3-none-any.whl
Algorithm Hash digest
SHA256 5bd8bd7f655f483f2ccbf252a3345ee2635ea1015678f27c64f6b22df455ceb3
MD5 83eaacd6adcf6673052cd18b38be5940
BLAKE2b-256 3c490479d2f96df69bd77e94c92a8b2e5a7d0dc7fc16c395d18d0b147b7377f8

See more details on using hashes here.

Supported by

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