Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rundrund committed May 5, 2018
1 parent 8c86d0f commit 46fa602
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scraper.py
Expand Up @@ -33,5 +33,6 @@
soup = BeautifulSoup(page.content, 'html.parser')

#navigate to the current agenda
current_agenda = soup.selectl("tr.11,493,0 a")
print(current_agenda.prettify())
current_agenda = soup.find_all('tr', id_='11,493,0')
link = current_agenda.find_all('a')
print(link)

0 comments on commit 46fa602

Please sign in to comment.