py2request - 轻量级HTTP GET/POST工具


Apache
跨平台
Python

软件简介

py2request 是轻量级 HTTP GET/POST 工具(适用于Python 2)

基于 MultipartPostHandler

特征: 简单的接口; 支持发送含非ASCII字符的(dict)values和文件名.

用法:pyrequest.request(url, data=None, has_files=False|True)

1、当`has_files`为否时,`data`可以是一个相对复杂的dict表单结构,例如:
    `{ "user": { "name": "bob", "age": "18"}, "colors": ["red", "blue", "green"] }`
2、当`has_files`为真时,`data`必须是简单的表单结构:
    `{ "username" : "bob", "password" : "riviera", "file" : open("filepath", "rb") }`
3、当`data`为`None`并且`has_files`为`False`时,便会使用GET请求。