├── .gitignore ├── LICENSE.txt ├── README.md ├── requirements.txt ├── snap-map.png ├── sql ├── locations.sql └── media.sql └── story_downloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /snap-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/snap-map.png -------------------------------------------------------------------------------- /sql/locations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/sql/locations.sql -------------------------------------------------------------------------------- /sql/media.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/sql/media.sql -------------------------------------------------------------------------------- /story_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemec/snapchat-map-scraper/HEAD/story_downloader.py --------------------------------------------------------------------------------