Skip to main content

For reading & writing .tk files

Project description

TkLang

Allows one to parse .tk files

Instillation

python -m pip install TkLang

Usage

import tklang as tkl
content = tkl.load("your_tk_file.tk")

Example(s)

TkLang Code

<src>
    <button id="LLJ" height="1" width="20">LLJ</button>
    <button id="LLJW">LLJW</button>
</src>

Note that the <src> tag is arbitrary and may be replaced with what ever name you desire; however, it is required. Omitting the src tag will cause issues with parser

Python Code

import tklang as tkl
import tkinter as tk
t = tkl.load("test.tk")

root = t['master']
b1 = t['LLJ']

b1.grid(row=0, column=0)

root.mainloop()

Note that the 'master' key in the 't' dictionary is auto-definned and the root/master for all widgets in that TKL File

Features

load(src: file_name) -> dict

Changelog

0.0.1 ~ ~ 11/5/2020 10:01

Initial Unstable Release

0.0.2 ~ ~ 11/5/2020 10:03

Added README.md File

0.0.3 ~ ~ 11/5/2020 10:30

Added README.md File

0.0.4 ~ ~ 11/5/2020 10:43

Added setup.py & instillation_requires

filemodes -> file-modes

0.0.5 ~ ~ 11/5/2019 10:47

Updated changelog

1.0.0 ~ ~ [PLANNED]

Initial Stable Release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TkLang-0.0.5.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

TkLang-0.0.5-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page