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)




参考链接:

以上是关于python 第三方库的主要内容,如果未能解决你的问题,请参考以下文章

Python pydub 截取音频

使 Python 代码与第三方库可用于 unix 服务器

为啥pip安装第三方库时总出现红色代码?

你如何在 python 中处理 graphql 查询和片段?

Python——安装requests第三方库

python-第三方库的理解及某个函数的源代码