Skip to main content

Create code images from CLI using carbon

Project description

Pybites Carbon

A small utility to generate beautiful code images using the awesome carbon service.

Install

You can get it from PyPI:

pip install pybites-carbon

Usage

You can load in code from a file, the clipboard or a snippet. You can change the language, the image background and theme. You can also provide a different directory to store the image. Lastly, this tool uses Selenium in headless mode, to see what it does in the foreground, use -i (or --interactive).

$ carbon -h
usage: carbon [-h] [-v] (-f CODE | -c | -s CODE) [-i] [-l LANGUAGE] [-b BACKGROUND] [-t THEME] [-d DESTINATION] [-w WT]
              [--driver-path DRIVER_PATH]

Create a carbon code image

options:
  -h, --help            show this help message and exit
  -v, --version         show program's version number and exit
  -f CODE, --file CODE  File with code (default: None)
  -c, --clipboard       Use code on clipboard (default: None)
  -s CODE, --snippet CODE
                        Code snippet (default: None)
  -i, --interactive     Run Selenium in interactive (not headless) mode (default: False)
  -l LANGUAGE, --language LANGUAGE
                        Programming language (default: python)
  -b BACKGROUND, --background BACKGROUND
                        Background color (default: #ABB8C3)
  -t THEME, --theme THEME
                        Name of the theme (default: seti)
  -d DESTINATION, --destination DESTINATION
                        Specify folder where image should be stored (defaults to current directory) (default:
                        /Users/bbelderbos/code/pybites-carbon)
  -w WT, --wt WT        Windows control theme (default: sharp)
  --driver-path DRIVER_PATH
                        Path to the executable, if it is not given it reads value from environment variable
                        (DRIVER_PATH) (default: /Users/bbelderbos/bin/chromedriver)

Examples

  1. Make a hello world snippet carbon image:

    $ carbon -s 'print("hello world")'
    

    Resulting image:

    image from string

  2. Make a code image of a file, let's pick a FastAPI app I am working on:

    $ cat $HOME/code/infinite-scroll/main.py
    from fastapi import FastAPI, Query
    from sqlmodel import select, Session
    
    from youtube.models import YouTube, YouTubeRead
    from youtube.db import engine
    
    app = FastAPI()
    
    
    @app.get("/videos/", response_model=list[YouTubeRead])
    def read_videos(offset: int = 0, limit: int = Query(default=100, lte=100)):
    	with Session(engine) as session:
    		videos = session.exec(
    			select(YouTube).offset(offset).limit(limit)
    		).all()
    		return videos
    

    Run the script with the -f option:

    carbon -f $HOME/code/infinite-scroll/main.py
    

    Resulting image:

    image from file

  3. Copying the following lines to the clipboard:

    Here is my favorite feature: make an image from code I currently have on my OS clipboard (thanks pyperclip):

    Try it out, copy this code:

    from time import sleep
    
    sleep(2)
    

    Then run the script with -c:

    $ carbon -c
    

    Resulting image:

    image from clipboard

Useful shell aliases

I added this alias to my .zshrc to make it even easier:

image from string

(Actually I created this image having this alias line on my clipboard, then I ran: carbon -c -l application/x-sh -t monokai -b #D7D7BE -d $HOME/Downloads)

Developer setup

  1. Make a virtual environment
  2. Install packages
    • Install with pip via pip install requirements-dev.txt.
    • Install with Makefile by running make setup.
    • Install with the uv package manager by installing uv and then running uv sync.
  3. Install Tesseract. Refer to their instructions for details or install on Ubuntu with:
sudo apt install tesseract-ocr

The resulting carbon_image.png image will be downloaded to your current directory unless you specify a different destination directory using -d (or --destination).

To run the tests, type pytest or make test (it uses pytesseract - in the dev requirements - to read the text from the generated carbon image file).

We recommend running ruff before committing code. To set this up run this after checking out the repo:

$ pre-commit install
pre-commit installed at .git/hooks/pre-commit

Enjoy and feel free to mention me or Pybites when you post one of the created images on Twitter.

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

pybites_carbon-0.7.1.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

pybites_carbon-0.7.1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file pybites_carbon-0.7.1.tar.gz.

File metadata

  • Download URL: pybites_carbon-0.7.1.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.1

File hashes

Hashes for pybites_carbon-0.7.1.tar.gz
Algorithm Hash digest
SHA256 1b7221b0ec6dd77b736e66d08925074d85560b72a5d22bbf1c65fc584bb1d798
MD5 3bc45e6d1145c2db5499a07cf734a781
BLAKE2b-256 9714b5ebdaa000509b4c263559bc0cb55ea219e3ee15b50cdfcc6870c2088c71

See more details on using hashes here.

File details

Details for the file pybites_carbon-0.7.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pybites_carbon-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 95e9edc103975472178a5db073265bdcfe5eb5162654cdaa055547306f0955c8
MD5 cdb6f6f5a12cd4b2f699f24b98b97cf6
BLAKE2b-256 5436613a15e9e6297e55af74966c0410bd0d630aaea58ff9b23aded660292633

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