Tech Tip: Really Simple HTTP Server with Python
If you need a quick web server running and you don't want to mess with setting up apache or something similar, then Python can help. Python comes with a simple builtin HTTP server. With the help of this little HTTP server you can turn any directory in your system into your web server directory. The only thing you need to have installed is Python.
Practically speaking this is very useful to share files inside your local network. Implementing this tiny but hugely useful HTTP server is very simple, its just a single line command.
Assume that I would like to share the directory /home/hisam and my IP address is 192.168.1.2
Open up a terminal and type:
$ cd /home/somedir
$ python -m SimpleHTTPServer
That's it! Now your http server will start in port 8000. You will get the message:
Serving HTTP on 0.0.0.0 port 8000 ...
Now open a browser and type the following address:
http://192.168.1.2:8000
You can also access it via:
http://127.0.0.1:8000
If the directory has a file named index.html, that file will be served as the initial file. If there is no index.html, then the files in the directory will be listed.
If you wish to change the port that's used start the program via:
$ python -m SimpleHTTPServer 8080
If you want to only serve on localhost you'll need to write a custom Python program such as:
import sys
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
HandlerClass = SimpleHTTPRequestHandler
ServerClass = BaseHTTPServer.HTTPServer
Protocol = "HTTP/1.0"
if sys.argv[1:]:
port = int(sys.argv[1])
else:
port = 8000
server_address = ('127.0.0.1', port)
HandlerClass.protocol_version = Protocol
httpd = ServerClass(server_address, HandlerClass)
sa = httpd.socket.getsockname()
print "Serving HTTP on", sa[0], "port", sa[1], "..."
httpd.serve_forever()
Note also that this should also work on Windows or Cygwin.
Trending Topics
| December 2016 Video Preview | Dec 01, 2016 |
| Stepping into Science | Nov 30, 2016 |
| A Better Raspberry Pi Streaming Solution | Nov 29, 2016 |
| FutureVault Inc.'s FutureVault | Nov 28, 2016 |
| Message for You, Sir! | Nov 25, 2016 |
| Non-Linux FOSS: Scripts in Your Menu Bar! | Nov 23, 2016 |
- Tech Tip: Really Simple HTTP Server with Python
- Stepping into Science
- A Better Raspberry Pi Streaming Solution
- Qu’est-ce qu’on a fait au Bon Dieu ? Télécharger Le Film Complet Gratuit
- Tyson Foods Honored as SUSE Customer of the Year
- Radio Free Linux
- FutureVault Inc.'s FutureVault
- Message for You, Sir!
- The Tiny Internet Project, Part II
- Security Exercises





Comments
Simple HTTP Server in Java
If you wanted something similar but in Java, there is a source code posting at planet-source-code.com for it called Simple Web Server.
Handy command
Useful tip.
Regards,
Prevajanje Svitanok
Thanks!! nice tip! I'm
Thanks!! nice tip!
I'm looking in the pydoc to see where the default port 8000 is specified but i can't find it.
How do you guys find these things out?
Use the Source Luke
Thanks for asking, gives me a good reason to include this image:
Check line 566 of /usr/lib/python/BaseHTTPServer.py (or ../lib64/.. if you have a 64 bit O/S installed). If you have a different version of python installed the line number may be different.
Mitch Frazier is an Associate Editor for Linux Journal.
Where's the default port defined
Thanks alot, found where they defined the port to 8000.
It was indeed in /usr/lib/python2.6/BaseHTTPServer.py on line 580 on my 64bit ubuntu machine.
Only works for me with sudo
Only works for me with sudo
Save Some Variable Assignments
Instead of
Why not
but i dont get the last script
nice tip. But I just don't understand the script on the end. I suppose "to only serve on localhost" means limiting access to requests from localhost. So what if I want to limit requests to 123.145.167.189 or 192.168.1.* or similar? Any more detailed comment???
Localhost only
Yes it means only listen on the localhost, not on any external interfaces.
To change the address that is used, change the line 'server_address' assignment:
server_address = ('127.0.0.1', port)for example:
server_address = ('123.45.67.89', port)However, wildcards in the IP address are not supported so there's no way to listen just on a particular subnet (eg. 192.168.1.*).
Mitch Frazier is an Associate Editor for Linux Journal.
You can find a nice Video
You can find a nice Video Tutorial for hosting with Python as webserver at: http://digitizor.com/?p=1430
Hmmm...
Doesn't the Linux kernel come with an HTTP server built into it? No Python needed...
No
Most Linux distributions come with HTTP servers, apache being the most common, but there's not one in the kernel.
Mitch Frazier is an Associate Editor for Linux Journal.
Thank you very much
Thank you very much, this tip is absolutely amazing.
thanks alot
thanks great tip
tried it on windows machine with installed python
worked well
one line with netcat
really simple is this one using one line bash with netcat
while :; do nc -l 80 < my_nice.html ; done
Nice but Old
Commandlinefu does have so many such great tip:
http://www.commandlinefu.com/commands/browse/sort-by-votes
But yes its really really useful
--tej
Wow.....that is indeed a
Wow.....that is indeed a useful tip....
I did not know that
Very useful! Thanks.