Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gdmoney committed Dec 17, 2021
1 parent 70f08f0 commit 389d2de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
from urls import URL_LIST

# loop through the URLs
for page in URL_LIST:
for website in URL_LIST:
# query each website and return html, parse the html using Beautiful Soup and store in variable 'soup'
page = requests.get()
page = requests.get(website)
soup = BeautifulSoup(page.content, 'html.parser')

# take out the <div> of name and get its value
Expand Down

0 comments on commit 389d2de

Please sign in to comment.