Created
April 13, 2016 15:50
-
-
Save cjdd3b/e00b4eacb488ddca637a059ccb548825 to your computer and use it in GitHub Desktop.
Solution to scraping assignment
This file contains 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
import csv, mechanize | |
from bs4 import BeautifulSoup | |
# Get the output file ready | |
# datafile = open('output.csv', 'w') | |
# writer = csv.writer(datafile) | |
br = mechanize.Browser() | |
br.open('http://enr.sos.mo.gov/EnrNet/CountyResults.aspx') | |
html = br.response().read() | |
soup = BeautifulSoup(html, "html.parser") | |
county_dropdown = soup.find('select', | |
{'name':'ctl00$MainContent$cboCounty', | |
'id': 'cboCounty' | |
}) | |
county_values = county_dropdown.find_all('option') | |
for county in county_values: | |
county_name = county.text | |
county_id = county['value'] | |
# Submit form | |
br.select_form(nr=0) | |
br.form['ctl00$MainContent$cboElectionNames'] = ['750003566'] | |
br.form['ctl00$MainContent$cboCounty'] = [county_id] | |
br.submit('ctl00$MainContent$btnCountyChange') | |
html = br.response().read() | |
soup = BeautifulSoup(html, "html.parser") | |
main_table = soup.find('table', | |
{'id': 'MainContent_dgrdResults' | |
}) | |
output = [] | |
output.append(county_name) | |
# Now get the data from each table row | |
for row in main_table.find_all('tr'): | |
data = [cell.text for cell in row.find_all('td')] | |
if data != []: | |
if data[0] in ['Hillary Clinton', 'Bernie Sanders', 'Ted Cruz', 'John R. Kasich', 'Donald J. Trump']: | |
output.append(data[3]) # This is the vote percentage | |
print output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment