python 第三方库
Posted CSR-kkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 第三方库相关的知识,希望对你有一定的参考价值。
pytest
安装:pip install pytest
requests
安装:pip install requests
import requests
if __name__ == '__main__':
# get
req = requests.get("http://www.baidu.com")
print(req.status_code)
print(req.encoding)
req.encoding = "utf-8"
print(req.text)
# post
r = requests.post('http://httpbin.org/post', data={'key': 'value'})
print(r.text)
参考链接:
- pip官网:https://pypi.org/
- pytest:https://docs.pytest.org/
- requests:https://docs.python-requests.org/
以上是关于python 第三方库的主要内容,如果未能解决你的问题,请参考以下文章