Skip to content

Instantly share code, notes, and snippets.

View rajatnaik12's full-sized avatar
:octocat:
Lot's Happening

Rajat Naik rajatnaik12

:octocat:
Lot's Happening
  • Goa India
View GitHub Profile
@MFry
MFry / webserver.py
Last active September 10, 2019 19:20
Simple post/get server on Python 3.5 with cgi (udacity example converted)
#!/usr/bin/env python3.5
# different imports
from http.server import HTTPServer, BaseHTTPRequestHandler
import cgi
class WebServerHandler(BaseHTTPRequestHandler):
form_html = \
'''
<form method='POST' enctype='multipart/form-data' action='/hello'>