Metadata-Version: 2.4
Name: simpletki
Version: 0.1.1
Summary: A simple wrapper for Tkinter
Author: SummerCapybara
License: MIT
Keywords: tkinter,gui,simple
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

SimpleTki

SimpleTki is a lightweight Python library that simplifies the creation of graphical user interfaces using Tkinter. Compatible with Python 3.8+, and cross-platform support (Windows, macOS, Linux).

Installation

Install via pip (once published): pip install simpletki

Or install from source: git clone https://github.com/SummerCapybara/SimpleTki.git cd SimpleTki pip install .

pip install simpletki <- for PyPI
from simpletk import SimpleTk <- for Python import
Usage

from simpletk import SimpleTk

Create a window
app = SimpleTk() app.title("My App") app.run()

Contributing & License

Contributions are welcome! Please fork the repository and submit pull requests for improvements or bug fixes. This project is licensed under the MIT License. See the LICENSE file for details.

Links

GitHub Repository: https://github.com/SummerCapybara/SimpleTki
