- 授权协议: Apache
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://python-requests.org/
- 软件文档: http://docs.python-requests.org/en/latest/index.html
- 官方下载: https://github.com/requests/requests/releases
软件介绍
Requests 是一个 Python 的 HTTP 客户端库。
支持的 HTTP 特性:
Keep-Alive & Connection Pooling
International Domains and URLs
Sessions with Cookie Persistence
Browser-style SSL Verification
Automatic Content Decoding
Basic/Digest Authentication
Elegant Key/Value Cookies
Automatic Decompression
Unicode Response Bodies
HTTP(S) Proxy Support
Multipart File Uploads
Streaming Downloads
Connection Timeouts
Chunked Requests
.netrcSupportThread-safety
示例代码:
>>> r = requests.get('https://git.oschina.net', auth=('user', 'pass'))
>>> r.status_code
204
>>> r.headers['content-type']
'application/json'
>>> r.text
...
CGI 程序设计自学通
(美)格里高利 / 徐丹/等 / 机械工业出版社 / 1998-08 / 28.00元
本书集中讨论CGI编程,以便利用一起来看看 《CGI 程序设计自学通》 这本书的介绍吧!
