# PyDaMo **Repository Path**: Martin-word/PyDaMo ## Basic Information - **Project Name**: PyDaMo - **Description**: python 下调用大漠模块的方法【仅支持 32 位 python】 模块目前只支持免注册的方法进行调用大漠 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 1 - **Created**: 2019-10-23 - **Last Updated**: 2024-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pydm ### 介绍 Python 调用大漠的方法 ### 安装教程 pip install pydm ### 包的依赖 无 ### 使用说明 #### 初始化 from DaMo import DaMo if __name__ == '__main__': dm = DaMo( dmReg='C:/源码/Script/DLL/DmReg.dll', # 免注册dll dmdll = 'C:/源码/Script/DLL/dm.dll', # 大漠dll 本体 VIP='key的内容', # 是否注册 VIP debug = True # 是否开启 debug 模式 ) dm.Ver() dm.CheckFontSmooth() dm.Capture(r"C:\Users\Martin\Desktop\1.bmp") #### 具体使用例子请看text.py