Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 16, 2018 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/f083036af7fa6aeaa70b3bb708ad78b7 to your computer and use it in GitHub Desktop.
Save Fhernd/f083036af7fa6aeaa70b3bb708ad78b7 to your computer and use it in GitHub Desktop.
Cambiar el sistema de codificación una vez abiero un archivo. OrtizOL.
import urllib.request
import io
u = urllib.request.urlopen('http://www.python.org')
f = io.TextIOWrapper(u, encoding='utf-8')
texto = f.read()
print(texto)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment