Socket
Socket
Sign inDemoInstall

chlorophyll

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

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

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
**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 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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc