Skip to content

Instantly share code, notes, and snippets.

View Aylr's full-sized avatar

Taylor Miller Aylr

View GitHub Profile
@Aylr
Aylr / jupyter_ipython_unittest.ipynb
Created April 1, 2018 13:41 — forked from vlad-bezden/jupyter_ipython_unittest.ipynb
Example of how to use unittest in IPython or Jupyter
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Aylr
Aylr / post-server.py
Last active March 25, 2020 23:46 — forked from CalebMuhia/post-server.py
Python POST simple server
import json
from http.server import HTTPServer, BaseHTTPRequestHandler
from io import BytesIO
PORT = 8000
class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):