Skip to content

Instantly share code, notes, and snippets.

@louiemonte
louiemonte / uber city coordinates
Created June 19, 2015 22:22
Uber City Coordinates
This file has been truncated, but you can view the full file.
@louiemonte
louiemonte / get_coordinates_from_uber_city
Created June 19, 2015 18:40
Get the coordinates for all the uber cities
# Creates an Array with Uber city url's and their corresponding coordinates
import requests
from lxml import html
import re
page = requests.get("https://www.uber.com/cities")
tree = html.fromstring(page.text)
# Add code here to automatically find the urls
@louiemonte
louiemonte / get_prices_from_uber_city
Created June 19, 2015 16:18
Get uber city prices
# Creates an Array with Uber city url's and their corresponding prices
import requests
from lxml import html
import re
page = requests.get("https://www.uber.com/cities")
tree = html.fromstring(page.text)