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

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


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".


Best way is to make your own local server by using command prompt.

  1. Make a new folder say Project
  2. Make a new folder inside project & name it as "cgi-bin"(without quotes)
  3. Paste your .py file inside the cgi-bin folder
  4. Open cmd and change to the directory from which you want to run the server and type "python -m CGIHTTPServer"(without quotes)
  5. Minimize the cmd window & open your browser and type "localhost:8000/cgi-bin/yourpythonfilename.py"(without quotes).


Running a native python webserver as a windows service should be a no brainer. Check out the documentation for writing windows services (win32api, ActiveState python) in python and also the documentation for subclassing BaseHttpServer and SimpleHttpServer.

BTW: I had a similar question on stackoverflow: How to stop BaseHTTPServer.serve_forever() in a BaseHTTPRequestHandler subclass?

Basically, you subclass BaseHTTPServer (you have to anyway...) and then... but just read the accepted answer - it set me on the right track!