I am fairly new to BeautifulSoup4 and am having trouble extracting latitude and longitude values out of an html response from the below code.
url = 'http://cinematreasures.org/theaters/united-states?page=1'
r = requests.get(url)
soup = BeautifulSoup(r.content)
links = soup.findAll("tr")
print links
This code prints out this response multiple times.
<tr class="even location theater" data="{id: 0, point: {lng: -94.1751038, lat: 36.0848965}
Full tr response
<tr>\n
<th id="theater_name"><a href="/theaters/united-states?sort=name&order=desc">\u2191 Name</a>
</th>\n
<th id="theater_location"><a href="/theaters/united-states?sort=location&order=asc">Location</a>
</th>\n
<th id="theater_status"><a href="/theaters/united-states?sort=open&order=desc">Status</a>
</th>\n
<th id="theater_screens"><a href="/theaters/united-states?sort=screens&order=asc">Screens</a>
</th>\n</tr>,
<tr class="even location theater" data="{id: 0, point: {lng: -94.1751038, lat: 36.0848965}, category: 'open'}">\n
<td class="name">\n
<a class="map-link" href="/theaters/8775">
<img alt="112 Drive-In" height="48" src="http://photos.cinematreasures.org/production/photos/22137/1313612883/thumb.JPG?1313612883" width="48" />
</a>\n<a class="map-link" href="/theaters/8775">112 Drive-In</a>\n
<div class="info-box">\n
<div class="photo" style="float: left;">
<a href="/theaters/8775">
<img alt="thumb" height="48" src="http://photos.cinematreasures.org/production/photos/22137/1313612883/thumb.JPG?1313612883" width="48" />
</a>
</div>\n
<p style="min-width: 200px !important;">\n<strong><a href="/theaters/8775">112 Drive-In</a></strong>\n
<br>\n 3352 Highway 112 North
<br>Fayetteville, AR 72702
<br>United States
<br>479.442.4542
<br>\n</br>
</br>
</br>
</br>
</br>
</p>\n</div>\n</td>\n
<td class="location">\n Fayetteville, AR, United States\n</td>\n
<td class="status">\n Open\n</td>\n
<td class="screens">\n 1\n</td>\n</tr>
How would I go about getting just the lng and lat values out of this response?
Thank you in advance.