
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
A module that fills your code with color - syntax highlighted text box widget for Tkinter.
Note This module is the successor to
tkcode
, as it is deprecated - please do not use it any more.
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.
pip install chlorophyll
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 .
CodeView
WidgetOptions | 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 |
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
A module that fills your code with color - syntax highlighted text box widget for Tkinter.
We found that chlorophyll demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.