Skip to content

Instantly share code, notes, and snippets.

View oalee's full-sized avatar
:octocat:
Meow

oalee oalee

:octocat:
Meow
View GitHub Profile
@pankajp
pankajp / serve_http.py
Last active October 19, 2024 11:58
Simple Python HTTP Server with multi-threading and partial-content support
#! /usr/bin/env python
# Standard library imports.
from SocketServer import ThreadingMixIn
import BaseHTTPServer
import SimpleHTTPServer
import sys
import json
import os
from os.path import (join, exists, dirname, abspath, isabs, sep, walk, splitext,