Skip to content

Instantly share code, notes, and snippets.

View timopb's full-sized avatar
😴
Sleeping

Timo P. Becker timopb

😴
Sleeping
View GitHub Profile
@timopb
timopb / https-server.py
Last active August 20, 2023 19:22
Very basic HTTPS Server in Python (3.10)
import http.server
import ssl
import os
host = 'localhost'
port = 443
folder = 'wwwroot'
def main():
pwd = os.getcwd()