- 博客(4)
- 收藏
- 关注
原创 学习使用selenuim库来爬取百度疫情模块
这次我们来学习使用selenuim库来爬取百度疫情模块下的今日热点: 这是要爬取的网站: https://voice.baidu.com/act/newpneumonia/newpneumonia#tab1 我们先安装selinium库 在命令行下输入pip install selinium进行安装 然后 http://chromedriver.storage.googleapis.com/index.html 这个网站下载相对应的chrome的驱动。 接下来引入库 ...
2021-11-21 22:33:46 242 2
原创 python写快速排序
基本思想 1选定Pivot中心轴 2将大于Pivot的数字放在Pivot的右边 3将大于Pivot的数字放在Pivot的左边 4分别对左右子序列重复前三步操作 #定义函数 def quicksort(arry: list, l: int,r: int) : if l < r: i = l j = r # 取第一个值为中心轴 pivot = arry[l] while i != j: # 从右往左找到第一个比中心轴小的元素,交换位置 while j >.
2021-11-14 15:46:46 1177 1
原创 selenuim登入四级网
bro = webdriver.Firefox() bro.get("https://passport.neea.edu.cn/CETLogin?ReturnUrl=http://cet-bm.neea.edu.cn/Home/VerifyPassport/?LoginType=0") #bro.find_element_by_xpath('/html/body/div[6]/div[1]/a[1]').click() sleep(0.5) bro.find_element_by_xpath('//*[@.
2021-09-14 15:50:21 233 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人