Mantén la atención ya que en este escrito vas a hallar la solución que buscas.
Ejemplo 1: urllib python
#Used to make requestsimport urllib.request
x = urllib.request.urlopen('https://www.google.com/')
print(x.read())
Ejemplo 2: encabezados urllib.request
try:
from urllib.request import Request, urlopen # Python 3
except ImportError:
from urllib2 import Request, urlopen # Python 2
req = Request('http://api.company.com/items/details?country=US&language=en')
req.add_header('apikey', 'xxx')
content = urlopen(req).read()
print(content)
Ejemplo 3: con urllib.request.urlopen(“https://
import urllib.request
req = urllib.request.Request('http://www.voidspace.org.uk')
with urllib.request.urlopen(req) as response:
the_page = response.read()
Ejemplo 4: urllib3 python
>>>import urllib3
>>> http = urllib3.PoolManager()>>> r = http.request('GET', 'http://httpbin.org/robots.txt')>>> r.status
200>>> r.data
'User-agent: *nDisallow: /denyn'
Ejemplo 5: urllib urlretrieve python 3
#In Python 3.x, the urlretrieve function is located in the urllib.request module:
from urllib.request import urlretrieve
Aquí tienes las reseñas y calificaciones
Recuerda recomendar esta crónica si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)