Metadata-Version: 2.1
Name: PyDaMo
Version: 0.1.0
Summary: Interop.SHDocVw
Home-page: https://code.aliyun.com/a1403951401/PyDaMo
Author: Martin
Author-email: 1403951401@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# 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

