特牛网址导航

Python HTTP库:requests快速入门_conda下开发python http接口-CSDN博客

网友收藏
文章浏览阅读7.5k次,点赞2次,收藏2次。安装最推荐的方式是使用Anacondaconda install request 如果不想安装Anaconda,可以使用pip安装pip install request 本地化httpbin测试工具pip install gunicorn httpbingunicorn httpbin:app (Windows平台不支持)基本用法url = 'http://httpbin.org/'r = requests.get(url, 'get')r = requests.post(url, 'p_conda下开发python http接口