All Questions
3 questions
0
votes
1
answer
314
views
Making execution of Python script fool-proof beyond adding shebang
Assume that a Python package (available via PyPI) is too difficult for novice users to utilize. Specifically, typing python2 path_to_package/start_GUI.py in the command line, which opens a TKinter GUI,...
23
votes
3
answers
13k
views
How to decouple UI from logic on Pyqt/Qt apps properly?
I've read quite a lot about this subject in the past and watched some interesting talks like this one from Uncle Bob's. Still, I always find pretty difficult to architect properly my desktop ...
8
votes
3
answers
27k
views
Browser-based GUI for a python application [closed]
I want to create a web/browser-based GUI for a command-line python application. The goal is to make use of HTML/JS technologies to create this GUI. As the application itself, it needs to run on Linux ...