Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmaloney committed Aug 6, 2019
1 parent c5fec08 commit 8d21227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -37,7 +37,7 @@ def scrape_data():
time.sleep(1)

h2 = soup.find("h2")
e_name.append(h2.text)
e_name.append(h2.text.strip())

box_item = soup.find('ul',{'class': "b-list__box-list"})
box_item = box_item.find_all('li')
Expand Down

0 comments on commit 8d21227

Please sign in to comment.