
Python
vrix
产品经理
展开
-
python 库上传私有nexus3 仓库
python3 + peewee + openpyxl + xlwings 打包自己的三方库,兵发布到nexus OSS 服务器。原创 2022-07-09 00:46:22 · 1232 阅读 · 0 评论 -
python3.9.6 用Pyinstaller打包PyQt5出现No module named ‘PyQt5.sip‘ ,如何解决?
看了网上很多其他人的思路:方法1.针对日后出现的ModuleNotFoundError,请记住一句话:缺什么模块,你就在源码中导入什么模块。就是说在你的代码中import PyQt5.sip,亲测无效。方法2. stackoverflow 也给了方案:python - No module named PyQt5.sip - Stack Overflow就是让你卸载之前的qt,然后重装,亲测无效。pip uninstall PyQt5pip uninstall PyQt5-sip...原创 2021-09-07 08:29:15 · 2167 阅读 · 0 评论 -
python 调用selenium 做爬虫, 调用chrome浏览器的参数有哪些
先来一段代码,大家看一下:from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionsfrom selenium.webdriver.common.by import Byclass ChromeTool: debug = False driver = None...原创 2020-05-06 14:56:46 · 1221 阅读 · 0 评论 -
python ASCII字符的实用程序 curses.ascii 库的安装使用
https://www.lfd.uci.edu/~gohlke/pythonlibs/下载对自己电脑配置的WHL文件,并安装,比如我用的是curses‑2.2+utf8‑cp27‑cp27m‑win_amd64.whlpip install curses‑2.2+utf8‑cp27‑cp27m‑win_amd64.whlPython 代码中即可使用如下的方法from curses...原创 2018-12-25 22:00:28 · 1613 阅读 · 0 评论