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
Development install
First, fork the repo, then run these commands in your terminal
git clone https://github.com/your-username/chlorophyll
cd chlorophyll
python3 -m venv env
source env/bin/activate
pip install -e .
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 |
autohide_scrollbar | Auto hide scrollbars | Bool |
linenums_border | Border width of the line numbers | Int |
default_context_menu | Enable context menus in CodeView | Bool |
**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
Release history Release notifications | RSS feed
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.2.tar.gz
(10.4 kB
view details)
File details
Details for the file chlorophyll-0.4.2.tar.gz
.
File metadata
- Download URL: chlorophyll-0.4.2.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 950c8f48cc5bd3bf201341d0f69e114d52156f9403e23132e1683ae6b5246ba8 |
|
MD5 | 0fb53d1e13693d7d63db2a16c3ee354b |
|
BLAKE2b-256 | dca765ca60d3df76cffb4e83595cb8b47c4c2996204b65755c21ea0054f14bdc |