├── .gitignore ├── LICENSE ├── Makefile ├── MovieTime.ipynb ├── OpenStreetMapsExample.ipynb ├── Pycon2017.pdf ├── README.md ├── SocrataExample.ipynb ├── TheBasics.ipynb ├── data-sources.md ├── portland_parks_big.geojson ├── portland_parks_small.geojson └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/Makefile -------------------------------------------------------------------------------- /MovieTime.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/MovieTime.ipynb -------------------------------------------------------------------------------- /OpenStreetMapsExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/OpenStreetMapsExample.ipynb -------------------------------------------------------------------------------- /Pycon2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/Pycon2017.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/README.md -------------------------------------------------------------------------------- /SocrataExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/SocrataExample.ipynb -------------------------------------------------------------------------------- /TheBasics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/TheBasics.ipynb -------------------------------------------------------------------------------- /data-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/data-sources.md -------------------------------------------------------------------------------- /portland_parks_big.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/portland_parks_big.geojson -------------------------------------------------------------------------------- /portland_parks_small.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/portland_parks_small.geojson -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kscottz/PythonFromSpace/HEAD/requirements.txt --------------------------------------------------------------------------------