Skip to main content

A module that fills your code with color - syntax highlighted text box widget for Tkinter.

Project description

Chlorophyll

Note This module is the successor to tkcode, as it is deprecated - please do not use it any more.

Description

Chlorophyll provides the CodeView widget for tkinter, which is a Text widget with syntax highlighting, line numbers, and works as a simple code editor. It is written in Python and uses the pygments library for syntax highlighting and the TkLineNums module for line numbers.

Installation

pip install chlorophyll

Documentation

CodeView Widget

Options Description Input
master The parent widget Tkinter widget
lexer The Language lexer Pygments lexer
color_scheme A color scheme for the code Dict, string, or toml file
tab_width The width of a tab (\t) Int
**kwargs Keyword arguments for the widget Any keyword arguments given to a Text widget

Basic Usage:

from tkinter import Tk

import pygments.lexers
from chlorophyll import CodeView

root = Tk()

codeview = CodeView(root, lexer=pygments.lexers.RustLexer, color_scheme="monokai")
codeview.pack(fill="both", expand=True)

root.mainloop()

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

chlorophyll-0.4.1.tar.gz (9.5 kB view hashes)

Uploaded Source

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