Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
blablupcom committed Apr 10, 2017
1 parent 00ce569 commit e859be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -101,7 +101,7 @@ def convert_mth_strings ( mth_string ):
import requests

for i in range(1, 7):
html = requests.get(urls.format(i))
html = requests.get(urls.format(i), verify=False)
soup = BeautifulSoup(html.text, 'lxml')
blocks = soup.find_all('a', attrs = {'class':'browse2-result-name-link'})
for block_url in blocks:
Expand Down

0 comments on commit e859be9

Please sign in to comment.