Advertisement
Fhernd

lectura-pagina-web.py

Feb 9th, 2018
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import urllib.request
  2.  
  3. # Página a ser leída:
  4. ortizol_blog = urllib.request.urlopen('https://ortizol.blogspot.com')
  5.  
  6. # Lectura de contenido:
  7. print(ortizol_blog.read(200))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement