Skip to main content

Let your code take comprehensive notes and publish notes and figures as a beautiful consolidated PDF document.

Project description

Magazine

PyPi Version MIT License Read the Docs Issues
Let your code take comprehensive notes and publish notes and figures as a beautiful consolidated PDF document.

Idea

The magazine package helps you to create beautiful PDF reports of what has been done during the execution of your app.

  1. Your scripts or submodules can write topical reports in plain human-readable text, which could also include numerical results, data tables, figures, or citations.
  2. The collection of topics can be used to publish a glossy PDF document.

Example

from magazine import Magazine, Publish

E = 42
Magazine.report("Experiment", "The analysis found that energy equals {} Joule.", E)
Magazine.cite("10.1002/andp.19163540702")

with Publish("Report.pdf", "My physics report", info="Version 0.1") as M:
    M.add_topic("Experiment")
    M.add_references()

Instead of inline commands, you can also use a decorator to automatically write and format the content of the docstring section "Report" and its "References" section into the report.

@Magazine.reporting("Physics")
def Method_A(a, b, c=3):
    """
    A complex method to calculate the sum of numbers.

    Report
    ------
    The method "{function}" used input parameters a={a}, b={b}, and c={c}.
    Calculations have been performed following Einstein et al. (1935).
    The result was: {return}. During the process, the magic number {magic} appeared.

    References
    ----------
    Einstein, A., Podolsky, B., & Rosen, N. (1935). Can Quantum-Mechanical Description of Physical Reality Be Considered Complete? Physical Review, 47(10), 777–780. https://doi.org/10.1103/physrev.47.777

    """
    result = a + b + c

    # Function "_report" is provided by the decorator to communicate more variables
    magic = 42

    return result

# When the function is called, it is automatically reported.
Method_A(2, 3, c=4)

Output in the PDF:

The method "Method_A" used input parameters (2, 3), and c=4. Calculations have been performed following Einstein et al. (1935). The result was: 9. During the process, the magic number 42 appeared.

Check also example.py and output/Magazine.pdf for more full examples.

Example output PDF report

Documentation

A documentation and API reference can be found on ReadTheDocs:

Install

pip install magazine

If you are working with uv, use uv add magazine.

Requires:

  • fpdf2
  • habanero (optional, for academic citations)
  • neatlogger (wrapper for loguru)

Acknowledgements

  • Uses the Google font Roboto as it just looks great in PDFs.

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

magazine-0.4.0.tar.gz (292.7 kB view details)

Uploaded Source

Built Distribution

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

magazine-0.4.0-py3-none-any.whl (293.2 kB view details)

Uploaded Python 3

File details

Details for the file magazine-0.4.0.tar.gz.

File metadata

  • Download URL: magazine-0.4.0.tar.gz
  • Upload date:
  • Size: 292.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.5

File hashes

Hashes for magazine-0.4.0.tar.gz
Algorithm Hash digest
SHA256 99c0ed467ba0f8d0a5bd755de857ec9d024a80409815ba3906eeee0522f37535
MD5 597d5f1b18ce1226528655afc4b8d071
BLAKE2b-256 eba6ca03814468e38a07c7ae699961ffa34c22bbad76c461cf6d9d0c63873bef

See more details on using hashes here.

File details

Details for the file magazine-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: magazine-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 293.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.5

File hashes

Hashes for magazine-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 97d88d091667593771973c0b04e02f8ca7826cd44b6aa35064a53eeec608bd4e
MD5 5e9536d5e9e6d5b1f883f2a1559f68c1
BLAKE2b-256 4fb04d8ae073eac89edefa334aab00254c1a4226607e2a552e095b567bc7093d

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