Python Forum
Which is best python package to create interactive page? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Which is best python package to create interactive page? (/thread-28993.html)



Which is best python package to create interactive page? - Py_veeran - Aug-13-2020

I have experience in python but not in web based projects. I am really confused to select which one . My requirements are,

I have created few utilities in python to automate my stuff
Need to pass arguments from user interface with drop down option, radio button with constant values, file upload option
Also need to have some static pages like detailed guidelines doc about various processes like Sphinx doc.
Some interactive dashboard whereas data from csv
Each functionalities from different drop down menu options or different tab
Execute python script after file upload by clicking on some buttons and display some specific messages from running program
Anyone across my network should use this to automate their stuff and I will extend this with lot more functionality and would like to keep all in one place
I read about python Tkinter, Django, Flask . But I need suggestions to select the right package.

Thanks in advance !


RE: Which is best python package to create interactive page? - Larz60+ - Aug-13-2020

Quote:Which is best python package to create interactive page?
'Best' is personal.
Many like Qt5, i have been partial to wxpython, and tkinter (built into most python distros) will suffice for many projects.
Lately, I started learning Kivy and think it might be the way to go as you can create applications for many platforms including desktop and mobile devices as well. I can't report in yet as I have just begun to use it, but looks promising.
You should give yourself a day or so to look at each one and see what will fit best for your application.


RE: Which is best python package to create interactive page? - ndc85430 - Aug-14-2020

You realise that you'll likely also need to write JavaScript for your pages, right? It's expensive to go back to the server for everything, so some amount of programming on the client is necessary.