Skip to main content

Generate beautiful images of code with syntax highlighting in a stylish terminal window.

Project description

PyCheese

GitHub release PyPI version Codecov License

PyCheese is a Python-based tool for generating beautiful, high-quality images of code with syntax highlighting, rendered in a macOS-style terminal window. Built for automation and easy customization, it can be easily integrated into scripts or pipelines.

example-image


Features

  • Syntax Highlighting – Utilizes Pygments with support for dozens of languages.
  • macOS-style Terminal UI – Recreates the terminal header and shadow.
  • Fonts – Use any TTF font, comes with JetBrains Mono for elegant, readable code.
  • Fully Scriptable – Designed to run headlessly from scripts, CI pipelines, or other Python apps.
  • Easily Customizable – Modify themes, fonts, window styles, and more in plain Python.
  • Self-contained – No need for browsers or servers. Everything runs locally.

Installation

pip install pycheese

Test if the tool works by running the following and looking at the output PNG file.

echo "import os" | pycheese 

Command Line Usage

Render the code in sample_code.py in a default 80x24 window. By default, the window scrolls with the code and only the last 24 rows will be shown if the code does not fit into the window.

pycheese --file tests/sample_code.py

Use the --columns and --rows options to change the window size.

pycheese --columns 45 --file tests/sample_code.py

Set the --style to dracula and save the output to window.png.

pycheese --columns 80 --rows 24 --style dracula \
         --file tests/sample_code.py --output window.png 

Docker

It's also possible to run the application in an isolated container. First, the Docker image needs to be built.

docker build -t pycheese-app .

Then the application can be run easily from within the container.

docker run --rm pycheese-app --help

Mount the local directory to allow the docker container to read Python files and output images.

docker run -v $(pwd):/data --rm pycheese-app --columns 45 --file code.py --output out.png

Programmatic Usage

from pycheese import *

config = RenderConfig()
render = Render(config)

code = 'print("Hello, world!")'
render.render(code=code)
render.save_image("hello_world.png")

A slightly more custom way to call the tool is to create a RenderConfig to overwrite specific parameters.

config = RenderConfig(
    rows = 10,
    columns = 30,
    shadow_blur = 10,
    shadow_color = "darkblue",
    shadow_alpha = 80,
    shadow_offset = 40,
    margin = 50,
    first_bg_color = "#775588",
    second_bg_color = "#663355",
)
render = Render(config)

code = 'print("Hello, world!")'
render.render(code=code)
# show the PIL image object directly
render.final_image.show()

PyCheese renders four distinct layers: background, shadow, text, and title bar. They are composited into the final image. This approach allows the modification of individual layers for an animation without having to re-render any other layers.

renderer.bg_layer
renderer.shadow_layer
renderer.text_layer
renderer.titlebar_layer
renderer.final_image

It's possible to efficiently generate multiple images or an animation by only modifying the layer that is changing. Here we change the style of the text layer, all the remaining layers remain unchanges will not get re-rendered when .render() is called.

import time
code='print("Hello, world!")'

for style in ["monokai", "dracula"]:
    render.render_text_layer(code=code, style=style)
    render.render()
    render.final_image.show()
    time.sleep(0.5)

Fonts

The tool comes with the JetBrainsMono font. Direct the tool to your fonts folder for more font choices.

Styles

PyCheese uses the Pygments library which comes with a range of styles that can be selected with the --style options. The complete list can be found here.

Some dark styles:

  • monokai
  • zenburn
  • nord
  • dracula
  • gruvbox-dark

Some light styles:

  • solarized-light
  • gruvbox-light
  • friendly
  • friendly_grayscale
  • murphy

Line Wrapping

The line wrapping can be independently applied using the linewrap.py script.

hatch run python src/pycheese/utils/linewrap.py --columns 20 tests/sample_code.py

Alternatives

Font License

JetBrains Mono typeface is available under the OFL-1.1 License and can be used free of charge, for both commercial and non-commercial purposes. You do not need to give credit to JetBrains, although we will appreciate it very much if you do. See JetBrainsMono License

License

With the exception of the font files, the code and assets contained in this repository are licensed under GNU General Public License v3.0 as detailed in the LICENSE file.

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

pycheese-0.2.7.tar.gz (630.1 kB view details)

Uploaded Source

Built Distribution

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

pycheese-0.2.7-py3-none-any.whl (567.0 kB view details)

Uploaded Python 3

File details

Details for the file pycheese-0.2.7.tar.gz.

File metadata

  • Download URL: pycheese-0.2.7.tar.gz
  • Upload date:
  • Size: 630.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for pycheese-0.2.7.tar.gz
Algorithm Hash digest
SHA256 1d9f7db9b66674422b6d4042a235c701f248bec7ec7bec52ed810f798d15ad60
MD5 ea0d92edcdc24190e0bdda4ece37065f
BLAKE2b-256 07654a690b4fd8cbe88c907bd16e096799a287edce9961631c51a737221f7be8

See more details on using hashes here.

File details

Details for the file pycheese-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: pycheese-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 567.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for pycheese-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 9328b1367ee679306683d492beded03092a8c593fef2ac8809dbad8857dd8abc
MD5 b4515f2d49eaab75cfdd20073b6f960f
BLAKE2b-256 83358d0990b7bcddaef4887fbf32c72e31f4e72f697423d7baa2ee21f7add035

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