python -m http.server 8000
By default, server binds itself to all interfaces. The option ``-b/--bind``
-specifies a specific address to which it should bind. For example, the
-following command causes the server to bind to localhost only::
+specifies a specific address to which it should bind. Both IPv4 and IPv6
+addresses are supported. For example, the following command causes the server
+to bind to localhost only::
python -m http.server 8000 --bind 127.0.0.1
.. versionadded:: 3.4
``--bind`` argument was introduced.
+.. versionadded:: 3.8
+ ``--bind`` argument enhanced to support IPv6
+
By default, server uses the current directory. The option ``-d/--directory``
specifies a directory to which it should serve the files. For example,
the following command uses a specific directory::
"""
server_address = (bind, port)
+ if ':' in bind:
+ ServerClass.address_family = socket.AF_INET6
+
HandlerClass.protocol_version = protocol
with ServerClass(server_address, HandlerClass) as httpd:
sa = httpd.socket.getsockname()
from http import server, HTTPStatus
import os
+import socket
import sys
import re
import base64
self.assertCountEqual(server.__all__, expected)
+class ScriptTestCase(unittest.TestCase):
+ @mock.patch('builtins.print')
+ def test_server_test_ipv6(self, _):
+ mock_server = mock.MagicMock()
+ server.test(ServerClass=mock_server, bind="::")
+ self.assertEqual(mock_server.address_family, socket.AF_INET6)
+
+ mock_server.reset_mock()
+ server.test(ServerClass=mock_server,
+ bind="2001:0db8:85a3:0000:0000:8a2e:0370:7334")
+ self.assertEqual(mock_server.address_family, socket.AF_INET6)
+
+ mock_server.reset_mock()
+ server.test(ServerClass=mock_server,
+ bind="::1")
+ self.assertEqual(mock_server.address_family, socket.AF_INET6)
+
+
def test_main(verbose=None):
cwd = os.getcwd()
try:
CGIHTTPServerTestCase,
SimpleHTTPRequestHandlerTestCase,
MiscTestCase,
+ ScriptTestCase
)
finally:
os.chdir(cwd)