File: httpserver.py

package info (click to toggle)
devscripts 2.25.15~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 8,528 kB
  • sloc: perl: 26,530; sh: 11,698; python: 4,428; makefile: 363
file content (25 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python3
import http.server
import logging
from http.server import SimpleHTTPRequestHandler


class GetHandler(SimpleHTTPRequestHandler):
    def do_GET(self):
        logging.error(self.headers)
        SimpleHTTPRequestHandler.do_GET(self)


def test():
    Handler = GetHandler
    httpd = http.server.HTTPServer(("", 0), Handler)

    sa = httpd.socket.getsockname()
    with open("port", "w") as f:
        f.write(str(sa[1]))

    httpd.serve_forever()


if __name__ == "__main__":
    test()