Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import urllib.request
- # Página a ser leída:
- ortizol_blog = urllib.request.urlopen('https://ortizol.blogspot.com')
- # Lectura de contenido:
- print(ortizol_blog.read(200))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement