Created
April 9, 2019 03:02
-
-
Save ritvikmath/cb4d279a7969c8b085e28de046e2aafe to your computer and use it in GitHub Desktop.
python libraries needed for starbucks scraping
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #needed to call Starbucks API | |
| import requests | |
| #needed to parse through text returned by Starbucks | |
| import re | |
| #needed to put all our nice data into a csv at the end | |
| import pandas as pd | |
| #needed to make fancy maps | |
| import folium | |
| #needed to check whether a Starbucks is in LA County | |
| from shapely.geometry import Point | |
| from shapely.geometry.polygon import Polygon | |
| import json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment