跳到主要内容

requests

信息

Requests 唯一的一个非转基因的 Python HTTP 库,人类可以安全享用。

GitHub | pypi.org | 官方文档 | 中文文档

请求

通过 form-data 发送文件

import requests

POST_HOST = 'http://localhost:3000/upload'
jpg = open('image.jpg', 'rb')

response = requests.post(POST_HOST, files={'image': ('image.jpg', jpg.tobytes())})

响应

读取 Json 响应

import requests

response = requests.get('https://api.github.com/events')
response.json().get('xxx')