├── .gitignore ├── AUTHORS ├── CHANGELOG ├── COPYING ├── MANIFEST.in ├── README.md ├── examples └── nepal.csv ├── mapturner └── __init__.py ├── requirements.txt ├── setup.py └── test.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/README.md -------------------------------------------------------------------------------- /examples/nepal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/examples/nepal.csv -------------------------------------------------------------------------------- /mapturner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/mapturner/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.5.0 2 | envoy>=0.0.3 3 | pyyaml>=3.11 4 | tqdm>=4.8.4 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/setup.py -------------------------------------------------------------------------------- /test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/mapturner/HEAD/test.yaml --------------------------------------------------------------------------------