汇智学堂-Python爬虫入门之一

Python爬虫入门之一

一、运行环境
1、系统:Win10
2、Python版本:python3.6.6
3、IDE:PyCharm

二、requests 库的安装
pip install requests
在这里插入图片描述
在这里插入图片描述
三、新建项目
在这里插入图片描述
新建项目:zhaopingou,
新建文件:index.py


import requests #导入requests库
r=requests.get('http://www.zhaopingou.com/')
print(r.text)
Run index.py

返回内容,部分内容截图:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_39593940/article/details/88775038