I would like to create a small app that would be like a form on a website, but just for local files. I’m not really sure where to start (Django or other) or what to use, but I’d like to start with the GUI.
What would be the best way to create a program like this? Can I use Django to create a form that would not be used in a browser and without a server?
If I understand your requirement, you want to create UI for a Form. Also, you don’t want to use browser. Then you have lots of options.
Djangois web-framework. You can avoid it. Simply create a UI withWxPythonorPyQt(I recommend to use this) orTkInteretc. Do a google search for tutorials.