Loading

摘要: Vim-Vimplus配置 https://www.cnblogs.com/highway-9/p/5984285.html https://github.com/junegunn/vim-plug (PlugInstall) An automatic configuration program f 阅读全文
posted @ 2022-01-31 17:17 luoxian 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 转化请求头 import re headers = """ Accept: */* Accept-Encoding: gzip, deflate, br Accept-Language: zh-CN,zh;q=0.9 Connection: keep-alive Host: movie.douban 阅读全文
posted @ 2022-01-31 17:15 luoxian 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Zsh-Powerlevel10k: 最好看,方便,实用的命令行主题 https://www.cnblogs.com/zhangtianli/p/p10k.html https://blog.csdn.net/qq_40938528/article/details/117338066 项目地址 su 阅读全文
posted @ 2022-01-28 23:54 luoxian 阅读(19215) 评论(1) 推荐(4) 编辑
摘要: css选择器用法 导入库 import parsel import requests 语法使用 url = 'http://www.baidu.com' response = requests.get(url) selector = parsel.Selector(response.text) 选择 阅读全文
posted @ 2022-01-05 20:44 luoxian 阅读(2416) 评论(0) 推荐(1) 编辑
摘要: pip镜像源 Linux下 修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹) 内容如下: [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trust 阅读全文
posted @ 2022-01-05 20:37 luoxian 阅读(129) 评论(0) 推荐(0) 编辑
摘要: pyqt5-笔记 https://www.bookstack.cn/read/PyQt5-Chinese-tutoral/%E4%BA%8B%E4%BB%B6%E5%92%8C%E4%BF%A1%E5%8F%B7.md 1. Pycharm安装pyqt5 pip install -i http:// 阅读全文
posted @ 2021-12-30 01:50 luoxian 阅读(54) 评论(0) 推荐(0) 编辑
摘要: PyAutoGUI-自动化手工操作工具 https://www.jianshu.com/p/9c3cce682120 一个外挂代码 先上一小段外挂示例代码:全部代码见https://github.com/asweigart/sushigoroundbot 外挂代码功能为: 1、通过内置图片定位桌面上 阅读全文
posted @ 2021-12-28 19:04 luoxian 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 时间转换与加减 import time import datetime localtime = time.asctime(time.localtime(time.time())) print(localtime) # Sun Jul 5 17:14:09 2020 time # 当前时间戳 time 阅读全文
posted @ 2021-12-26 17:47 luoxian 阅读(791) 评论(0) 推荐(0) 编辑
摘要: Sublime-text www.sublimetext.cn 一、下载 打开sublimeText3官网,点击下载 最新激活: https://www.abskoop.com/4786/ —– BEGIN LICENSE —– Mifeng User Single User License EA7 阅读全文
posted @ 2021-12-26 13:44 luoxian 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Python脚本——监控系统脚本 监测系统的CPU、内存、硬盘、网卡和服务端口信息,并发送邮件信息 Linux和Windows都可以使用使用psutil模块获取检测数据字典services:定义端口数据方法send_mail:定义了邮件信息 # 运行输出信息 服务状态: nginx: Off! ph 阅读全文
posted @ 2021-03-04 12:18 luoxian 阅读(131) 评论(0) 推荐(0) 编辑