Metadata-Version: 2.1
Name: chlorophyll
Version: 0.3.0
Summary: A module that fills your code with color - syntax highlighted text box widget for Tkinter.
Home-page: https://gitlab.com/rdbende/chlorophyll
Author: rdbende
Author-email: rdbende@gmail.com
License: MIT license
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

<h1 align="center">Chlorophyll</h1>

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

This module is the successor to [`tkcode`](https://github.com/rdbende/tkcode), as it is deprecated - please do not use it anymore.

## Installation

`pip install chlorophyll`

## Basic usage
Until there's no documentation

```python
import tkinter

import pygments.lexers
from chlorophyll import CodeView

root = tkinter.Tk()

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

root.mainloop()
```


