Python Forum

Full Version: CGI for Basic Python Webserver
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys;

I have a simple python webserver but I want to use the CGI script for file download and upload according to client-request .But I couldnt find the any way of adjusting the CGI except using apache2 ,nginx or etc... and I dont wanna use Apache2,nginx or etc..  Is there any way to adjust cgi script to my python webserver with Bash script or with other way ? Can you give me any advice about it ?
Thanks...
You can use the builtin GUI package, tkinter,
if you plan on a more elaborate GUI it can be done in tkinter (see https://python-forum.io/Thread-Show-Inst...age-detail)
but you may find pyQt4 easier to get good results with.
There's also wxpython, and PyGTK.