Skip to content

Instantly share code, notes, and snippets.

View Chaitran77's full-sized avatar
💭
Hopefully building something new. Go to repositories > electronicsClub

Kiran Patel Chaitran77

💭
Hopefully building something new. Go to repositories > electronicsClub
View GitHub Profile
@mdonkers
mdonkers / server.py
Last active April 30, 2024 23:26
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
License: MIT License
Copyright (c) 2023 Miel Donkers
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer