├── .gitignore ├── LICENSE.txt ├── README.md ├── chupaESRI.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.iml 3 | .idea 4 | .DS_Store 5 | __pycache__/ 6 | 7 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnjreiser/chupaESRI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnjreiser/chupaESRI/HEAD/README.md -------------------------------------------------------------------------------- /chupaESRI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnjreiser/chupaESRI/HEAD/chupaESRI.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | simplejson 2 | requests 3 | psycopg2-binary --------------------------------------------------------------------------------