Skip to content

Commit

Permalink
Merge pull request HarshCasper#1012 from ireneelizabethsabu/ireneeliz…
Browse files Browse the repository at this point in the history
…abethsabu

FeatureNotFound bug corrected
  • Loading branch information
vybhav72954 authored Apr 24, 2021
2 parents 47794f4 + b410656 commit aebf2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/Email_Scrape_From_Webpage/webpage-email-scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

# Finding all linked URLs in the website.
# Creating a Beautiful Soup to parse the HTML document.
soup = BeautifulSoup(response.text, 'lxml')
soup = BeautifulSoup(response.text, 'html.parser')

# Once this document is parsed and processed,
# now find and process all the anchors as it may contains emails i.e. linked urls in this document.
Expand Down

0 comments on commit aebf2fd

Please sign in to comment.