WebBased python script gui or some sort of user interface -


how possible make python script more user friendly. mean, not familiar shell based use. instead users prefering click click click , thats all.. can provide help.. ??

thanks in advance

if looking simple python desktop ui, can recommend:

tkinter: comes out of box. ugly do: https://wiki.python.org/moin/tkinter

gtk: gtk based bindings: http://www.pygtk.org/

qt: again bindings: https://riverbankcomputing.com/software/pyqt/intro

if app small , don't mind ugly interface, go tkinter

if want web interface:

this depend entirely on whether wish learn framework or learn on-the-work

take at:

flask: lightweight , easy use: http://flask.pocoo.org/

django: de-facto "not lightweight solution". includes orm, template engine, form validations , more: https://www.djangoproject.com/

there tons of python web frameworks, find these 2 easy-to-learn, good-for-a-particular-task ones.

if willing dive python world, i'd go django. take time, maybe lot. it's worth it.


Comments