摘要: 爬虫最新的库requests-html库总结requests-html是比较新的爬虫库,作者和requests是同一个作者 一.安装依赖 pip install requests-html 我们可以在安装的时候看到他安装了lxml,reuqests,bs4......我们常用的解析和爬取的库都分装在 阅读全文
posted @ 2021-11-27 23:38 阿布_alone 阅读(1335) 评论(0) 推荐(0)
摘要: 一.升级yum [root@selenium ~]# yum update -y [root@selenium ~]# yum -y groupinstall "Development tools" [root@selenium ~]# yum install openssl-devel bzip2 阅读全文
posted @ 2021-11-27 23:33 阿布_alone 阅读(388) 评论(0) 推荐(0)
摘要: 在雷电模拟器下载证书 若第一种方法无法下载,请使用第二种方法 第一种方法:直接输入雷电模拟中的浏览器输入 www.chls.pro/ssl 第二种方法:带上自己ip及端口号 http://自己IP:自己端口号/charles-ssl-proxying-certificate.cer如:http:// 阅读全文
posted @ 2021-11-27 22:11 阿布_alone 阅读(464) 评论(0) 推荐(0)
摘要: 爬取安逸花 https://vayh.msxf.com/ 时出现这种错误,总结如下: 1.https连接太多没有关闭导致的433,解决方法: import requests requests.adapters.DEFAULT_RETRIES = 5 # 增加重连次数 s = requests.ses 阅读全文
posted @ 2021-11-27 22:04 阿布_alone 阅读(1129) 评论(0) 推荐(0)
摘要: Android设备的唯一标识符 1.IMEI (手机的身份证号码) IMEI(International Mobile Equipment Identity)是国际移动设备身份码的缩写,国际移动装备辨识码,是由15位数字组成的”电子串号”,它与每台移动电话机一一对应,而且该码是全世界唯一的。每一只移 阅读全文
posted @ 2021-11-27 18:45 阿布_alone 阅读(1580) 评论(0) 推荐(0)
摘要: JS输出为[object Object] 如何解决 [object Object] 直接转成json 二行js代码搞定 var str = Java.use('java.lang.String')console.log('\nstr\n', str.$new(args1)) Des3Encrypt. 阅读全文
posted @ 2021-11-27 18:30 阿布_alone 阅读(1185) 评论(0) 推荐(0)
摘要: 代码: def genImeiLuhn(digits14): digit15 = 0 digits14 = str(digits14) for num in range(14): if num % 2 == 0: digit15 = digit15 + int(str(digits14)[num]) 阅读全文
posted @ 2021-11-27 11:36 阿布_alone 阅读(626) 评论(0) 推荐(0)
TOP