Skip to content

Instantly share code, notes, and snippets.

@ritvikmath
Created April 9, 2019 03:02
Show Gist options
  • Select an option

  • Save ritvikmath/cb4d279a7969c8b085e28de046e2aafe to your computer and use it in GitHub Desktop.

Select an option

Save ritvikmath/cb4d279a7969c8b085e28de046e2aafe to your computer and use it in GitHub Desktop.
python libraries needed for starbucks scraping
#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