上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页

2023年1月6日

摘要: 1. 国内主流Python第三方库安装Url地址: 阿里云镜像:http://mirrors.aliyun.com/pypi/simple/ 豆瓣镜像:http://pypi.douban.com/simple/ 清华大学:https://pypi.tuna.tsinghua.edu.cn/simp 阅读全文
posted @ 2023-01-06 15:01 明媚的夏午 阅读(1432) 评论(0) 推荐(0) 编辑

2022年12月15日

摘要: 一、好用的练习工具 https://regex101.com/ 二、涉及语法: 1、re.match(pattern, string, flags=0)从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match() 就返回 None。我们可以使用group(num) 或 groups( 阅读全文
posted @ 2022-12-15 14:17 明媚的夏午 阅读(15) 评论(0) 推荐(0) 编辑

2022年11月16日

摘要: pdf : response = self.multi_requests(url=str(pdf_url)) reader = PdfFileReader(io.BytesIO(response.content)) writer = PdfFileWriter() page_count = read 阅读全文
posted @ 2022-11-16 14:48 明媚的夏午 阅读(135) 评论(0) 推荐(0) 编辑

2022年11月7日

摘要: 好用的正则测试网站: https://regex101.com/ 1、日期 匹配 需求 : 把天数后面的th、rd、st去掉 如: 11th October, 2022———>11 October, 2022 21st July, 2022———>21 July, 2022 3rd Septembe 阅读全文
posted @ 2022-11-07 11:23 明媚的夏午 阅读(36) 评论(0) 推荐(0) 编辑

2022年10月31日

摘要: 报错: 解决办法: 管理员的方式打开powershell Set-ExecutionPolicy RemoteSigned 重启pycharm,,就ok了 阅读全文
posted @ 2022-10-31 15:25 明媚的夏午 阅读(25) 评论(0) 推荐(0) 编辑
 
摘要: 1、不能在原目录解压 会失败(解压失败会有提示 ,最后一行),复制到桌面解压 2、解压没问题,安装提示失败。提示:unable to start services for vmware tools 解决办法:(按顺序运行) sudo apt-get install linux-headers-vir 阅读全文
posted @ 2022-10-31 14:29 明媚的夏午 阅读(1065) 评论(0) 推荐(0) 编辑

2022年10月20日

摘要: 爬虫 post请求: 示例网站:如下图 ,要爬的资源不在html文件中,不可用xpath直接取 、 先把网络下面的信息清空,再点击页码 出现一下文件 但是翻页过程中发现请求头的请求网址是不变的 ,请求方法是post 这时候就需要在post请求的data参数加上载荷,可以发现载荷里面有page这个参数 阅读全文
posted @ 2022-10-20 11:40 明媚的夏午 阅读(356) 评论(0) 推荐(0) 编辑

2022年10月12日

摘要: 捕捉error 打印出来 try: ...... except Exception as err: print(f" detail:{err}") raise 相当于return ,运行暂停 try: ...... except Exception as err: raise err 阅读全文
posted @ 2022-10-12 13:37 明媚的夏午 阅读(88) 评论(0) 推荐(0) 编辑

2022年9月28日

摘要: class 用点(.) id 用(#) 属性有多个的时候 之间用去掉空格.连接 如:对于 <div class="health-field health-field--label-hidden field field--name-field-body field--type-text-long fi 阅读全文
posted @ 2022-09-28 14:32 明媚的夏午 阅读(288) 评论(0) 推荐(0) 编辑

2022年9月25日

摘要: ## 模块导入、加载python中一个py文件就是一个模块。一个package或者一个文件夹就是一个包。当前包中有哪些可用的属性可以通过dir()方法来查看。### dir()```pythonimport jsonif __name__ == '__main__': # 获取当前模块的属性列表 p 阅读全文
posted @ 2022-09-25 18:32 明媚的夏午 阅读(196) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页