Skip to content

Instantly share code, notes, and snippets.

View Aylr's full-sized avatar

Taylor Miller Aylr

View GitHub Profile
@Aylr
Aylr / excellent_profiler.py
Last active July 2, 2020 15:23
Janky profiler experiment.
import os
from typing import Any, Tuple
import pandas as pd
import sqlalchemy
from great_expectations import DataContext
from great_expectations.core import ExpectationSuite
from great_expectations.dataset import Dataset
from great_expectations.profile.base import Profiler, ProfilerTypeMapping
@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):
@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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.