Ejemplo 1: código de retorno de impresión de Python de solicitudes
>>> import requests
>>> r = requests.get('http://httpbin.org/status/404')
>>> r.status_code
404
Ejemplo 2: crea un objeto de respuesta en python
from requests.models import Response
the_response = Response()
the_response.code = "expired"
the_response.error_type = "expired"
the_response.status_code = 400
the_response._content = b'{ "key" : "a" }'
print(the_response.json())
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)