]> granicus.if.org Git - python/commitdiff
Fix Issue8937 - SimpleHTTPServer should contain usage example
authorSenthil Kumaran <orsenthil@gmail.com>
Wed, 16 Jun 2010 14:55:31 +0000 (14:55 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Wed, 16 Jun 2010 14:55:31 +0000 (14:55 +0000)
Doc/library/simplehttpserver.rst

index bdf66d1cbb4397026d7c81d72bda0f6cab2f82f6..79e01d0ea53b4b2049d6c0e7757f0948a28c148b 100644 (file)
@@ -81,12 +81,34 @@ The :mod:`SimpleHTTPServer` module defines the following class:
       contents of the file are output. If the file's MIME type starts with
       ``text/`` the file is opened in text mode; otherwise binary mode is used.
 
-      For example usage, see the implementation of the :func:`test` function.
+      The :func:`test` function in the :mod:`SimpleHTTPServer` module is an
+      example which interfaces the :class:`SimpleHTTPRequestHandler` as a
+      Handler to the :mod:`BaseHTTPServer` module.
 
       .. versionadded:: 2.5
          The ``'Last-Modified'`` header.
 
 
+The :mod:`SimpleHTTPServer` module can be used the following manner in order to
+setup a very basic web server serving files relative to the current directory.::
+
+        import SimpleHTTPServer
+        import SocketServer
+
+        PORT = 8000
+
+        Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
+
+        httpd = SocketServer.TCPServer(("", PORT), Handler)
+
+        print "serving at port", PORT
+        httpd.serve_forever()
+
+It can also be invoked directly using the ``-m`` switch of interpreter a with
+``port number`` argument.::
+
+        python -m SimpleHTTPServer 8000
+
 .. seealso::
 
    Module :mod:`BaseHTTPServer`