Skip to content

Instantly share code, notes, and snippets.

@ricardoaugusto
Created March 20, 2020 14:21
Show Gist options
  • Save ricardoaugusto/32538a3d47e14ab20bc1a49dff7237d6 to your computer and use it in GitHub Desktop.
Save ricardoaugusto/32538a3d47e14ab20bc1a49dff7237d6 to your computer and use it in GitHub Desktop.
Python 3 HTML scrapper
from urllib.request import urlopen
link = 'https://example.net'
f = urlopen(link)
output = f.read()
print(output)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment