“Anfragen” Code-Antworten

Anfragen

>>> import requests
>>> r = requests.get('https://httpbin.org/basic-auth/user/pass', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
'{"authenticated": true, ...'
>>> r.json()
{'authenticated': True, ...}
Alex Zaslavskis

Holen Sie sich Anfragen Python

import requests

r = requests.get('https://api.github.com', auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']
Victorious Vole

Python -Anfragen

Url = "https://"

r = requests.get( Url )

data = r.json()
MzanziLegend

Ähnliche Antworten wie “Anfragen”

Fragen ähnlich wie “Anfragen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen