backTop

10 2019 档案

摘要:1.安装Pyinstaller pip install pyinstaller 2.对Python文件打包 pyinstaller.exe -F xxx.py #-F Create a one-file bundled executable 3.将文件一起打包到Python程序中 Python中使用 阅读全文
posted @ 2019-10-17 10:20 ooops! 阅读(286) 评论(0) 推荐(0)
摘要:工具开发者 YinKaisheng 本文参考资料 https://www.cnblogs.com/Yinkaisheng/p/3444132.html https://github.com/yinkaisheng/Python-Automation-for-Windows 1.uiautomatio 阅读全文
posted @ 2019-10-15 19:37 ooops! 阅读(11809) 评论(0) 推荐(0)
摘要:import os BASE_DIR1 = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR2 = os.path.dirname(os.path.abspath(__file__)) BASE_DIR3 = o 阅读全文
posted @ 2019-10-12 15:56 ooops! 阅读(269) 评论(0) 推荐(0)
摘要:參考原文: python 对excel进行截图 1 from win32com.client import Dispatch, DispatchEx 2 import pythoncom 3 from PIL import ImageGrab, Image 4 import uuid 5 6 7 # 阅读全文
posted @ 2019-10-12 15:39 ooops! 阅读(1753) 评论(1) 推荐(0)