tKroopy is an open source Tkinter framework for building groups of small to medium GUI applications.
Think of it as a central location where you would store all of your applications that run tasks. Be it extracting data out of your database or a handy calculator to work out how much annual leave you'll have in say 6 months time.
- Data Abstraction Layer - web2py's powerful DAL library for desktop applications
- Table - display your data from your database with a couple of lines of code
- Console - a thread safe Text widget
- Productionisation - when applying patches to existing applications you can continue to develop applications without having to worry about preventing them from going into production
tkroopy relies on a couple of additional modules:
Included:
Download required:
- py2exe (windows) - follow install instructions
Download or fork tkroopy to your local machine, you can then run using tKroopy.py in the root directory.
Copy the /src/template.py file into the /src/Applications/ directory and build your code ontop of this module. The file name needs to be the same as the initiating class name.
If you want to share your applications internally to non-python users you can compile the code into an executable using setup.bat in the root directory (will add support for osx soon).
project/
config/ > config files
config.ini > general config file
contrib/ > third party modules
images/ > icons etc.
logs/ > YYYYMMDD.log files
scripts/ > store any python code that cannot be compiled, e.g. ArcPy scripts
src/
applicatoins/ > place your applications in here
examples/ > group your applications into subfolders
modules/ > framework modules
console.py > threadsafe Text widget with vscrollbar
hyperlink.py > insert hyperlink into console
tab.py > base class for all applications
table.py > grid view of data
main.py > main menu
template.py > use this as the template for creating your applications
tkroopy.py > base class for tkroopy, manages tabs (applications)
LICENSE > License GNU GPL 3.0
setup.bat > run this to execute the build script (windows)
setup.py > the build script, create executable version
tKroopy.py > the startup script