A template project for Python with Gtk applications.
Go to file Use this template
itdominator 619fae8a20 Merge pull request 'develop' (#1) from develop into master
Reviewed-on: #1
2024-02-11 01:53:00 +00:00
plugins Plugin inferastructure work/fixes 2023-10-10 22:33:28 -05:00
src refactored mixins; made db optional through commenting out; webkit settings externalized 2024-02-10 19:45:23 -06:00
user_config added webkit integration widget; made main method 2024-02-08 21:26:13 -06:00
.gitignore Converted to using SqlModel as wrapper around SqlAlchemy 2023-09-23 00:12:36 -05:00
LICENSE Initial commit 2020-05-07 19:04:09 -05:00
README.md Refactored db setup; extended layout to add header widget zone 2023-11-19 15:37:11 -06:00
requirements.txt Converted to using SqlModel as wrapper around SqlAlchemy 2023-09-23 00:12:36 -05:00

README.md

Python-With-Gtk-Template

A template project for Python with Gtk applications.

Requirements

  • PyGObject (Gtk introspection library)
  • pyxdg (Desktop ".desktop" file parser)
  • setproctitle (Define process title to search and kill more easily)
  • sqlmodel (SQL databases and is powered by Pydantic and SQLAlchemy)

Note

  • Move respetive sub folder content under user_config to the same places in Linux. Though, user/share/ can go to ~/.config folder if prefered.
  • In additiion, place the plugins folder in the same app folder you moved to /usr/share/ or ~/.config/ . There are a "<change_me>" strings and files that need to be set according to your app's name located at:
  • __builtins__.py
  • user_config/bin/app_name
  • user_config/usr/share/app_name
  • user_config/usr/share/app_name/icons/app_name.png
  • user_config/usr/share/app_name/icons/app_name-64x64.png
  • user_config/usr/share/applications/app_name.desktop

For the user_config, after changing names and files, copy all content to their respective destinations. The logic follows Debian Dpkg packaging and its placement logic.