https://www.python.org/
下载完安装即可。
我的安装目录是 C:\Python27
(python.exe 所在目录)
然后在 Path 里直接引用即可 %PYTHON_HOME%
控制台查看版本 python --version
这就算成功了
进入python
安装目录的Scripts
文件夹(C:\Python27\Scripts
),里面有一个pip
工具。
直接 cmd 打开命令窗口
pip install requests
# coding=UTF-8
import requests, io
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'
}
# 定义函数
def gettest():
response = requests.get(
"https://www.baidu.com",
headers=headers)
response.encoding = "utf-8" # 设置接收编码格式
print("状态码:" + str(response.status_code)) # 打印状态码
# print(response.text) # 输出爬取的信息
# 保存文件
with io.open("../pachong/test.txt", "w", encoding="utf-8") as file:
file.write(response.text)
file.close()
# 调用函数
gettest()