摘要:
1. 国内主流Python第三方库安装Url地址: 阿里云镜像:http://mirrors.aliyun.com/pypi/simple/ 豆瓣镜像:http://pypi.douban.com/simple/ 清华大学:https://pypi.tuna.tsinghua.edu.cn/simp 阅读全文
2023年1月6日
2022年12月15日
2022年11月16日
2022年11月7日
2022年10月31日
摘要:
报错: 解决办法: 管理员的方式打开powershell Set-ExecutionPolicy RemoteSigned 重启pycharm,,就ok了 阅读全文
摘要:
1、不能在原目录解压 会失败(解压失败会有提示 ,最后一行),复制到桌面解压 2、解压没问题,安装提示失败。提示:unable to start services for vmware tools 解决办法:(按顺序运行) sudo apt-get install linux-headers-vir 阅读全文
2022年10月20日
摘要:
爬虫 post请求: 示例网站:如下图 ,要爬的资源不在html文件中,不可用xpath直接取 、 先把网络下面的信息清空,再点击页码 出现一下文件 但是翻页过程中发现请求头的请求网址是不变的 ,请求方法是post 这时候就需要在post请求的data参数加上载荷,可以发现载荷里面有page这个参数 阅读全文
2022年10月12日
摘要:
捕捉error 打印出来 try: ...... except Exception as err: print(f" detail:{err}") raise 相当于return ,运行暂停 try: ...... except Exception as err: raise err 阅读全文
2022年9月28日
摘要:
class 用点(.) id 用(#) 属性有多个的时候 之间用去掉空格.连接 如:对于 <div class="health-field health-field--label-hidden field field--name-field-body field--type-text-long fi 阅读全文
2022年9月25日
摘要:
## 模块导入、加载python中一个py文件就是一个模块。一个package或者一个文件夹就是一个包。当前包中有哪些可用的属性可以通过dir()方法来查看。### dir()```pythonimport jsonif __name__ == '__main__': # 获取当前模块的属性列表 p 阅读全文