nakome / tksnippets

Create database snippets with Tkinter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tksnippets

Simple snippets app made with Python and Tkinter

Requirements

python -m venv venv
python -m pip install -r requirements.txt

Package with Pyinstaller

You can create a build.bat or build.sh with this content.

pyinstaller main.py ^
    --onefile ^
    --clean ^
    --windowed --noconsole ^
    --hidden-import "clr" --name "Snippets" ^
    --icon "icon.ico"

Now copy storage folder inside dist folder and voila!

image

About

Create database snippets with Tkinter


Languages

Language:Python 99.4%Language:Batchfile 0.6%