上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 31 下一页
摘要: 直接上代码: import re import requests # 创建定长数字,作为一会名字 def creat_fivenum(num,n=5): for i in range(1,10): s=str(num) j=10**i if (int(num/j)==0): for a in ran 阅读全文
posted @ 2021-02-16 23:03 3ξ 阅读(62) 评论(0) 推荐(0) 编辑
摘要: requests 详细了解一下爬虫 #1爬虫究竟是合法还是违法的? # 在法律上不被禁止 算是中立性 # 2爬虫所带来风险主要体现在以下2个方面: # 爬虫干扰了被访问网站的正常运营; # 爬虫抓取了受到法律保护的特定类型的数据或信息。 # 爬虫的分类 # 通用爬虫:通用爬虫是搜索引擎(Baidu、 阅读全文
posted @ 2021-02-16 16:04 3ξ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: UA伪装 < >UA检测:门户网站会检测对应请求的载体身份标识,如果是浏览器那就认为是正常用户 headers headers = { 'Accept-Encoding': 'gzip, deflate, sdch', 'Accept-Language': 'en-US,en;q=0.8', 'Us 阅读全文
posted @ 2021-02-16 15:09 3ξ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: <script> //显示时间 setInterval(function() { var myDate = new Date; var year = myDate.getFullYear(); //获取当前年 var mon = myDate.getMonth() + 1; //获取当前月 var 阅读全文
posted @ 2021-02-15 23:21 3ξ 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 写作不易:我是阿森 不上图了,显得很乱 效果直接看我博客就看到啦 .navbar a:hover{color:#666;text-decoration:underline}.navbar a:link,.navbar a:active,.navbar a:visited{color:#666;tex 阅读全文
posted @ 2021-02-15 22:20 3ξ 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 下载安装一系列问题: G: cd anaconda3/Scripts pip install opencv-python==3.4.1.15 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/opencv-python/ opencv_p 阅读全文
posted @ 2021-02-12 23:53 3ξ 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 地址+包名字, 速度很快的 cp38代表你的python版本 一定要对应 https://pypi.tuna.tsinghua.edu.cn/simple/opencv-python/ http://pypi.doubanio.com/simple/opencv-python https://www 阅读全文
posted @ 2021-02-10 01:00 3ξ 阅读(376) 评论(0) 推荐(0) 编辑
摘要: import pyaudio import wave def get_audio(filepath): aa = str(input("是否开始录音? (y/n)")) if aa == str("y") : CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNEL 阅读全文
posted @ 2021-02-09 23:18 3ξ 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 爬取字体:网址一 网址二 网址三 爬取图片:网址一 网址二 网址三 网址四 网址五 地址六 阅读全文
posted @ 2021-02-07 02:39 3ξ 阅读(65) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> #c{ width: 300px; height: 300px; } #b{ display: none } </style> </head> <body> < 阅读全文
posted @ 2021-01-15 18:22 3ξ 阅读(54) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 31 下一页