Skip to content

Instantly share code, notes, and snippets.

View noweverywhere's full-sized avatar

Marinus Swanepoel noweverywhere

  • British Columbia, Canada
View GitHub Profile
@noweverywhere
noweverywhere / httpserver.py
Last active February 22, 2016 07:59
Simple HTTP Server in Python
#!/usr/bin/env/python
# -*- coding: utf-8 -*-
import sys
import os
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
os.chdir("/")