Python爬虫入门之一

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

二、requests 库的安装
pip install requests
汇智学堂-Python爬虫入门之一
汇智学堂-Python爬虫入门之一
三、新建项目
汇智学堂-Python爬虫入门之一
新建项目:zhaopingou,
新建文件:index.py


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

返回内容,部分内容截图:
汇智学堂-Python爬虫入门之一

相关文章:

  • 2021-05-05
  • 2021-10-30
  • 2022-01-29
  • 2021-12-06
  • 2021-07-07
猜你喜欢
  • 2021-05-17
  • 2021-04-23
  • 2022-02-03
  • 2021-12-16
  • 2021-08-11
相关资源
相似解决方案