quinta-feira, abril 07, 2016

Python HTTP Request

Requests: HTTP for Humans — Requests 2.9.1 documentation





python
Requests: HTTP for Humans

python post request
>>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
u'{"type":"User"...'
>>> r.json()
{u'private_gists': 419, u'total_private_repos': 77, ...}

Nenhum comentário: