├── .gitignore ├── Dockerfile ├── FastImporter.postman_collection.json ├── LICENSE ├── README.md ├── config.py ├── data ├── cities.json ├── state_data.csv ├── states.geojson ├── states.json └── us-state-capitals.csv ├── db.py ├── main.py ├── models.py ├── requirements.txt ├── routers └── imports.py └── utilities.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .vscode -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/Dockerfile -------------------------------------------------------------------------------- /FastImporter.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/FastImporter.postman_collection.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/config.py -------------------------------------------------------------------------------- /data/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/data/cities.json -------------------------------------------------------------------------------- /data/state_data.csv: -------------------------------------------------------------------------------- 1 | State Abbr,Number of Rest Stops 2 | IL,56 3 | IN,84 4 | WI,213 5 | -------------------------------------------------------------------------------- /data/states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/data/states.geojson -------------------------------------------------------------------------------- /data/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/data/states.json -------------------------------------------------------------------------------- /data/us-state-capitals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/data/us-state-capitals.csv -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/db.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/requirements.txt -------------------------------------------------------------------------------- /routers/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/routers/imports.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeller3/FastImporter/HEAD/utilities.py --------------------------------------------------------------------------------