Skip to content

Instantly share code, notes, and snippets.

@hdknr
Last active December 15, 2024 06:42
Show Gist options
  • Select an option

  • Save hdknr/eac2064b41ed28dcb137420120570fc1 to your computer and use it in GitHub Desktop.

Select an option

Save hdknr/eac2064b41ed28dcb137420120570fc1 to your computer and use it in GitHub Desktop.
Python: HTTP

Python: HTTP

簡単なHTMLサーバー(http.server + SimpleHTTPRequestHandler)

ディレクトリ一覧を返す

import http.server
import socketserver

PORT = 8000

Handler = http.server.SimpleHTTPRequestHandler

with socketserver.TCPServer(("", PORT), Handler) as httpd:
    print("serving at port", PORT)
    httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment