How can I create an local webserver for my python scripts?

Phil H picture Phil H · May 18, 2009 · Viewed 24.8k times · Source

I'm looking to use a local webserver to run a series of python scripts for the user. For various unavoidable reasons, the python script must run locally, not on a server. As a result, I'll be using HTML+browser as the UI, which I'm comfortable with, for the front end.

I've been looking, therefore, for a lightweight web server that can execute python scripts, sitting in the background on a machine, ideally as a Windows service. Security and extensibility are not high priorities as it's all running internally on a small network.

Should I run a native python webserver as a Windows service (in which case, how)? Or is it just as easy to install Apache onto the user's machine and run as CGI? Since this is all local, performance is not an issue either.

Or am I missing something obvious?

Answer

S.Lott picture S.Lott · May 18, 2009

Don't waste a lot of time creating Windows service.

Don't waste a lot of time on Windows Apache.

Just make a Python service that responds to HTTP requests.

Look at https://docs.python.org/2/library/basehttpserver.html
https://docs.python.org/3/library/http.server.html for version 3
Python offers an HTTP server that you can extend with your server-side methods.

Look at http://docs.python.org/library/wsgiref.html
Python offers a WSGI reference implementation that makes your server easy and standards-compliant.

Also http://fragments.turtlemeat.com/pythonwebserver.php


"I'm trying to avoid making the user run python stuff from the command prompt."

I don't see how clicking a web page is any different from clicking desktop icons.

Starting a web server based on Python is relatively easy, once you have the web server. First, build the server. Later, you can make sure the server starts. Let's look at some ways.

  1. Your user can't use a random browser to open your local page. They need a bookmark to launch "localhost:8000/myspecialserverinsteadofthedestop/" That bookmark can be a .BAT file that (1) runs the server, (2) runs firefox with the proper initial URL.

  2. You can put the server in the user's start-this menu.

  3. You can make your Python program a windows "service".