This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as http from 'http'; | |
| import db from './db'; | |
| import { StringDecoder } from 'string_decoder'; | |
| interface Record { | |
| firstName: string; | |
| lastName: string; | |
| address: string; | |
| } |