Created
December 11, 2018 14:54
-
-
Save jonathanoheix/4d700a2d1a2a285fd60ff322edcc1b5b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def getAndParseURL(url): | |
result = requests.get(url) | |
soup = BeautifulSoup(result.text, 'html.parser') | |
return(soup) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment