Skip to content

Instantly share code, notes, and snippets.

@jonathanoheix
Created December 11, 2018 14:54
Show Gist options
  • Save jonathanoheix/4d700a2d1a2a285fd60ff322edcc1b5b to your computer and use it in GitHub Desktop.
Save jonathanoheix/4d700a2d1a2a285fd60ff322edcc1b5b to your computer and use it in GitHub Desktop.
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