Gestione della risposta per le richieste HTTP
In questo capitolo, entreremo in maggiori dettagli sulla risposta ricevuta dal modulo delle richieste. Discuteremo i seguenti dettagli:
- Ottenere risposta
- Risposta JSON
- Risposta RAW
- Risposta binaria
Ottenere risposta
Faremo una richiesta all'URL utilizzando il metodo request.get ().
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users');
Il getdata ha l'oggetto risposta. Ha tutti i dettagli della risposta. Possiamo ottenere una risposta in 2 modi usando ( testo ) e (. Contenuto ). L'uso di response.text ti restituirà i dati in formato testo come mostrato di seguito -
Esempio
E:\prequests>python makeRequest.py
[
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "[email protected]",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
"zipcode": "92998-3874",
"geo": {
"lat": "-37.3159",
"lng": "81.1496"
}
},
"phone": "1-770-736-8031 x56442",
"website": "hildegard.org",
"company": {
"name": "Romaguera-Crona",
"catchPhrase": "Multi-layered client-server neural-net",
"bs": "harness real-time e-markets"
}
},
]
Vedrai che la risposta è la stessa, come sarebbe apparsa nel browser quando visualizzi l'origine per l'URL come mostrato di seguito -
Puoi anche provare l'URL .html e vedere il contenuto utilizzando response.text, sarà lo stesso del contenuto della sorgente di visualizzazione per l'URL .html nel browser.
Ora, proviamo response.content per lo stesso URL e vediamo l'output.
Esempio
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users')
print(getdata.content)
Produzione
E:\prequests>python makeRequest.py
b'[\n {\n "id": 1,\n "name": "Leanne Graham",\n "username": "Bret",\n
"email": "[email protected]",\n "address": {\n "street": "Kulas Light
",\n "suite": "Apt. 556",\n "city": "Gwenborough",\n "zipcode": "
92998-3874",\n "geo": {\n "lat": "-37.3159",\n "lng": "81.149
6"\n }\n },\n "phone": "1-770-736-8031 x56442",\n "website": "hild
egard.org",\n "company": {\n "name": "Romaguera-Crona",\n "catchPhr
ase": "Multi-layered client-server neural-net",\n "bs": "harness real-time
e-markets"\n }\n },\n {\n "id": 2,\n "name": "Ervin Howell",\n
"username": "Antonette",\n "email": "[email protected]",\n "address": {\n
"street": "Victor Plains",\n "suite": "Suite 879",\n "city": "Wisoky
burgh",\n "zipcode": "90566-7771",\n "geo": {\n "lat": "-43.950
9",\n "lng": "-34.4618"\n }\n },\n "phone": "010-692-6593 x091
25",\n "website": "anastasia.net",\n "company": {\n "name": "Deckow-Crist",
\n "catchPhrase": "Proactive didactic contingency",\n "bs":
"synergize scalable supply-chains"\n }\n },\n {\n "id": 3,\n "name":
"Clementine Bauch",\n "username": "Samantha",\n "email":
"[email protected]",
\n "address": {\n "street": "Douglas Extension",\n "suite": "Suite
847",\n "city": "McKenziehaven",\n "zipcode": "59590-4157",\n "ge
o": {\n "lat": "-68.6102",\n "lng": "-47.0653"\n }\n },\n
La risposta è data in byte. Riceverai una letteraball'inizio della risposta. Con il modulo delle richieste, puoi ottenere la codifica utilizzata e anche modificare la codifica se necessario. Ad esempio, per ottenere la codifica puoi utilizzare response.encoding.
print(getdata.encoding)
Produzione
utf-8
Puoi cambiare la codifica come segue - Puoi usare la codifica che preferisci.
getdata.encoding = 'ISO-8859-1'
Risposta JSON
È inoltre possibile ottenere la risposta per la richiesta Http in formato json utilizzando il metodo response.json () come segue:
Esempio
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users')
print(getdata.json())
Produzione
E:\prequests>python makeRequest.py
[{'id': 1, 'name': 'Leanne Graham', 'username': 'Bret', 'email': '[email protected]
biz', 'address': {'street': 'Kulas Light', 'suite': 'Apt. 556', 'city': 'Gwenborough',
'zipcode': '92998-3874', 'geo': {'lat': '-37.3159', 'lng': '81.1496'}},
'
phone': '1-770-736-8031 x56442', 'website': 'hildegard.org', 'company': {'name':
'Romaguera-Crona', 'catchPhrase': 'Multi-layered client-server neural-net', 'bs':
'harness real-time e-markets'}}]
Risposta RAW
Nel caso in cui sia necessaria la risposta grezza per l'URL Http, è possibile utilizzare response.raw, aggiungere anche stream = True all'interno del metodo get come mostrato di seguito -
Esempio
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users', stream=True)
print(getdata.raw)
Produzione
E:\prequests>python makeRequest.py
<urllib3.response.HTTPResponse object at 0x000000A8833D7B70>
Per leggere più contenuti dai dati grezzi puoi farlo come segue:
print(getdata.raw.read(50))
Produzione
E:\prequests>python makeRequest.py
b'\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\x95\x98[o\xe38\x12\x85\xdf\xe7W\x10y\
xda\x01F\x82.\xd4m\x9f\xdc\x9dd\xba\xb7\x93\xf4\x06q\xef4\x06\[email protected]\x15\x89m'
Risposta binaria
Per ottenere una risposta binaria possiamo utilizzare response.content.
Esempio
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users')
print(getdata.content)
Produzione
E:\prequests>python makeRequest.py
b'[\n {\n "id": 1,\n "name": "Leanne Graham",\n "username": "Bret",\n
"email": "[email protected]",\n "address": {\n "street": "Kulas Light
",\n "suite": "Apt. 556",\n "city": "Gwenborough",\n "zipcode": "
92998-3874",\n "geo": {\n "lat": "-37.3159",\n "lng": "81.149
6"\n }\n },\n "phone": "1-770-736-8031 x56442",\n "website":
"hildegard.org",\n "company": {\n "name": "Romaguera-Crona",\n "catchPhr
ase": "Multi-layered client-server neural-net",\n "bs": "harness real-time
e-markets"\n }\n },\n {\n "id": 2,\n "name": "Ervin Howell",\n "us
ername": "Antonette",\n "email": "[email protected]",\n "address": {\n
"street": "Victor Plains",\n "suite": "Suite 879",\n "city": "Wisoky
burgh",\n "zipcode": "90566-7771",\n "geo": {\n "lat": "-43.950
9",\n "lng": "-34.4618"\n }\n },\n "phone": "010-692-6593 x091
25",\n "website": "anastasia.net",\n "company": {\n "name": "Deckow-Crist",
\n "catchPhrase": "Proactive didactic contingency",\n "bs": "syn
ergize scalable supply-chains"\n }\n },\n {\n "id": 3,\n "name":
"Clementine Bauch",\n "username": "Samantha",\n "email": "[email protected]",
\n "address": {\n "street": "Douglas Extension",\n "suite": "Suite
847",\n "city": "McKenziehaven",\n "zipcode": "59590-4157",\n "
geo": {\n "lat": "-68.6102",\n "lng": "-47.0653"\n }\n },\n
La risposta è data in byte. Riceverai una letteraball'inizio della risposta. La risposta binaria viene utilizzata principalmente per richieste non di testo.