Skip to main content

Generate Jupyter notebooks.

Project description

herzog

Write your Python Jupyter notebooks in herzog!

herzog scripts are pure Python. This means version control, pull requests, CI/CD, and more.

Great! How does it work?

Usage

Use context managers to define Jupyter cells:

with herzog.Cell("python"):
    print("Hello herzog")

Want to tell your users what to do? Make a markdown cell:

with herzog.Cell("markdown"):
    """
    # How cool is this notebook?
    So cool!
    """

Use the herzog CLI to generate a notebook from your Python script:

herzog path/to/my/cool_script.py > path/to/my/cool_notebook.ipynb

Example

An example herzog script is shown below, along with the generated notebook. Both the herzog source and generated notebook can be found in the herzog repository.

Note that everything outside herzog context managers is not included in the notebook. That's where you put tests, developer notes, salacious accusations, or anything else.

import herzog

with herzog.Cell("markdown"):
    """
    # Fibonacci:
    Recursively generate terms from the Fibonacci sequence.
    """

with herzog.Cell("python"):
    def fibonacci(term: int) -> int:
        """
        0-indexed fibonacci
        """
        assert 0 <= term
        if 1 < term:
            return fibonacci(term - 1) + fibonacci(term - 2)
        else:
            return term

# Code outside herzog context does not appear in generated notebooks.
try:
    fibonacci(-1)
except AssertionError:
    # expected
    pass
expected_fibonacci = (0, 1, 1, 2, 3, 5, 8, 13, 21)
for i in range(1, len(expected_fibonacci)):
    assert expected_fibonacci[i] == fibonacci(i)

golden_ratio = (1 + 5 ** 0.5) / 2
assert 1e-10 > abs(golden_ratio - fibonacci(26) / fibonacci(25))

Rendered Fibonacci notebook

Installation

pip install herzog

Links

Project home page GitHub
Package distribution PyPI

Bugs

Please report bugs, issues, feature requests, etc. on GitHub.

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

herzog-0.1.0.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file herzog-0.1.0.tar.gz.

File metadata

  • Download URL: herzog-0.1.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.5

File hashes

Hashes for herzog-0.1.0.tar.gz
Algorithm Hash digest
SHA256 71715b5cf0a64a9ef5c51ad1caa2a2c98061c62cd646297423fa4de48ce376e1
MD5 cb21599f3d6447a0eaf9c9a8b6be1550
BLAKE2b-256 c8e78c9bbea22d92d74c5edb984e4c6fd04afe0fac869b04dae60856aabf0b44

See more details on using hashes here.

Provenance

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