You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

chlorophyll

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chlorophyll

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


Maintainers
1

Readme

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

OptionsDescriptionInput
masterThe parent widgetTkinter widget
lexerThe Language lexerPygments lexer
color_schemeA color scheme for the codeDict, string, or toml file
tab_widthThe width of a tab (\t)Int
autohide_scrollbarAuto hide scrollbarsBool
linenums_borderBorder width of the line numbersInt
default_context_menuEnable context menus in CodeViewBool
**kwargsKeyword arguments for the widgetAny 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()

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc