- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/reclosedev/requests-cache
- 软件文档: https://requests-cache.readthedocs.io/
软件介绍
requests-cache 是为 Python 的 Requests 库提供了持久化缓存支持的 Python 模块。
示例代码:
import requests
import requests_cache
requests_cache.install_cache('demo_cache')
for i in range(10):
requests.get('http://git.oschina.net/ld/J2Cache')
