Metadata-Version: 2.1
Name: wedoc
Version: 0.1.11
Summary: 企业微信文档接口, 包括文档的创建, 删除, 以及表格的操作
Home-page: https://wedoc.woni.link/
License: MIT
Keywords: wework,sheet
Author: wn
Author-email: 320753691@qq.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.28.2,<3.0.0)
Project-URL: Bug Tracker, https://github.com/wn0x00/wedoc/issues
Project-URL: Documentation, https://wedoc.woni.link/
Project-URL: Repository, https://github.com/wn0x00/wedoc
Description-Content-Type: text/markdown

# 企业微信文档接口

## 案例

```python
from wedoc import WedocClient


if __name__ =="__main__":
    corpid = "xxxxxxxxxxxxx"
    corpsecret = "xxxxxxxxxxxxx"

    client = WedocClient(corpid, corpsecret)
    res = client.get_crop_access_token()
    client.doc.create_doc()

```

## 文档接口

- 创建文档
- 重命名文档
- 删除文档
- 获取文档基础信息

## 表格接口

- 获取表格行列信息
- 获取表格数据
- 编辑表格内容

