摘要: from wxauto import WeChat import pywinauto,time,sys,re,random # 获取当前微信客户端 wx = WeChat() # 获取会话列表 wx.GetSessionList() # 输出当前聊天窗口聊天消息 ##msgs = wx.GetAll 阅读全文
posted @ 2022-12-26 16:33 myrj 阅读(333) 评论(0) 推荐(0) 编辑
摘要: re.error: unterminated character set at position 12 这很可能是因为元字符“{}、[]、()”。有没有什么正则表达式可以让finditer忽略它? 您必须转义正则表达式中的特殊字符: slice = "this characters \{}, \[] 阅读全文
posted @ 2022-12-26 13:33 myrj 阅读(3175) 评论(0) 推荐(0) 编辑
摘要: .ts文件转.mp3: ffmpeg -i 三生石下.ts -vn -c:a libmp3lame -q:a 0 1.1.mp3 批处理: for %i in (1*.ts) do ffmpeg -i %i -vn -c:a libmp3lame -q:a 0 %i.mp3 ffmpeg -i sr 阅读全文
posted @ 2022-12-26 11:50 myrj 阅读(94) 评论(0) 推荐(0) 编辑