Domande taggate «python-requests»

UTILIZZARE SOLO PER LA BIBLIOTECA DI RICHIESTE DI PYTHON. Requests è una libreria HTTP Python con funzionalità complete con un'API logica e di facile utilizzo.


6
Pubblica JSON usando le richieste Python
Devo inviare un JSON da un client a un server. Sto usando Python 2.7.1 e simplejson. Il client utilizza le richieste. Il server è CherryPy. Posso ottenere un JSON hardcoded dal server (codice non mostrato), ma quando provo a POSTARE un JSON sul server, ottengo "400 Bad Request". Ecco il …




13
Come scaricare l'immagine usando le richieste
Sto cercando di scaricare e salvare un'immagine dal web usando il requestsmodulo di Python . Ecco il codice (funzionante) che ho usato: img = urllib2.urlopen(settings.STATICMAP_URL.format(**data)) with open(path, 'w') as f: f.write(img.read()) Ecco il nuovo codice (non funzionante) usando requests: r = requests.get(settings.STATICMAP_URL.format(**data)) if r.status_code == 200: img = r.raw.read() with …


22
Richieste Python che lanciano SSLError
Sto lavorando a un semplice script che coinvolge CAS, controllo di sicurezza jspring, reindirizzamento, ecc. Vorrei usare le richieste di Python di Kenneth Reitz perché è un ottimo lavoro! Tuttavia, CAS richiede di essere convalidato tramite SSL, quindi devo prima superare questo passaggio. Non so quali siano le richieste di …





2
Invio di "User-agent" utilizzando la libreria Requests in Python
Voglio inviare un valore "User-agent"durante la richiesta di una pagina Web utilizzando le richieste Python. Non sono sicuro se sia corretto inviarlo come parte dell'intestazione, come nel codice seguente: debug = {'verbose': sys.stderr} user_agent = {'User-agent': 'Mozilla/5.0'} response = requests.get(url, headers = user_agent, config=debug) Le informazioni di debug non mostrano …



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.