Skip to content

Instantly share code, notes, and snippets.

View mitchellmarkoff's full-sized avatar

Mitchell Markoff mitchellmarkoff

View GitHub Profile
#Add bulk insert tool for Users into addresses table
#!/usr/bin/env python3
from typing import Any, Dict
def process(filename: str, db) -> None:
file = open(filename, "r")
import * as http from 'http';
import db from './db';
import { StringDecoder } from 'string_decoder';
interface Record {
firstName: string;
lastName: string;
address: string;
}