├── .gitignore ├── LICENSE ├── README.md ├── geonym.ods ├── geonym.py ├── geonymapi.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/README.md -------------------------------------------------------------------------------- /geonym.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/geonym.ods -------------------------------------------------------------------------------- /geonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/geonym.py -------------------------------------------------------------------------------- /geonymapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geonym/geonymapi/HEAD/geonymapi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | falcon==1.0.0 2 | gunicorn 3 | requests 4 | pyproj 5 | --------------------------------------------------------------------------------