Skip to content

Instantly share code, notes, and snippets.

View jossef's full-sized avatar
🌶️

Jossef Harush Kadouri jossef

🌶️
View GitHub Profile
@jossef
jossef / SimpleHTTPServerWithUpload.py
Last active August 29, 2015 18:00 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
import json
FILES_DIRECTORY = '/home/user/Desktop/selfie/pictures'
import os
import posixpath
import BaseHTTPServer
import urllib
import cgi