python3
python3相关问题学习记录
cbszju
这个作者很懒,什么都没留下…
展开
-
pyqt5-tools下没有qtdesigner
Python38\Lib\site-packages\qt5_applications\Qt\bin原创 2021-09-30 16:26:25 · 737 阅读 · 0 评论 -
PyQt5的UI控件回调使用Qthread,UI不卡,新手总结,未完
先贴主函数入口文件代码:代码思路点击pushbutton1、2、3则其绑定的回调函数pushbutton1、2、3 callback分别执行。结论:由于pushbutton1每次回调都创建MyQthread实例,会卡UI,并且都会调用析构函数在终端输出“析构Mythread 实例”,有一点不解的终端竟然先出析构信息,后执行子线程(输出10987654321),求高手解答pushbutt...原创 2020-02-11 19:51:18 · 2031 阅读 · 0 评论 -
python selenium 无头模式 反检测加载,USDT流通数据,区块链数据、资讯数据、北向资金等数据
为了采集稳定币USDT的流通数据,需要去https://wallet.tether.to/transparency采集,用的python3 和selenium,非无头模式可以顺利加载,无头模式下死活加载不出来,无头模式截图发现页面跳出来这货,尝试使用打码平台识别之,结果识别完了提交验证后还是回到这个页面,无奈啊。最后使用了如下参数解决了问题,顺利无头模式下加载页面def Chrome...转载 2020-02-03 14:36:57 · 722 阅读 · 0 评论 -
python3 pycharm PyQt5 pyinstaller 打包,同时安装64位和32位python
1、安装:pip install PyQt5pip install PyQt5-tools2、配置PyCharm3、pyinstaller打包pip install pyinstaller4、同时安装64位和32位python原创 2020-01-31 12:23:35 · 1282 阅读 · 0 评论 -
wxpy 中embed()和jupyter 依赖prompt-toolkit冲突
当我安装pip install notebook (或者pip install jupyter)后pip会自动安装一个叫做prompt-toolkit的包,这个时候再调用wxpy中的embed()函数就会报错Traceback (most recent call last): File "C:\Python37\lib\site-packages\prompt_toolkit\eventl...原创 2019-08-27 18:07:07 · 546 阅读 · 0 评论 -
python3 selenium定位 常用 示例,慢慢记录
h5symbol_block.find_element_by_xpath("./div/div[2]"),xpath 级联定位,“./”.表示当前元素根开始的定位# 定位 “开”元素的所有兄弟节点,参考https://www.cnblogs.com/lym51/p/6673533.htmlspans=driver.find_elements_by_xpath("//span[contain...原创 2019-08-28 21:30:33 · 270 阅读 · 0 评论 -
pandas 使用DataFrame.append方法得到的数据使用DataFrame.drop_duplicates方法去重失败,问题在数据类型不一致
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.drop_duplicates.html#pandas.DataFrame.drop_duplicateshttps://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Dat...原创 2019-08-30 14:05:50 · 1200 阅读 · 1 评论 -
python3 selenium K线图 拖动ActionChains
我就是举个例子,selenium 的 Actionchains使用可以参考这篇博客https://blog.csdn.net/jamieblue1/article/details/89856576def canvas_move_right(self,move_d = 0): driver = self.driver actions = ActionChains(...原创 2019-09-02 13:09:01 · 282 阅读 · 0 评论