Metadata-Version: 2.1
Name: cowechatapi
Version: 0.1.3
Summary: A tools for send message to company wechat.
Home-page: https://github.com/nikozhangwj/CoropWechatSendMsgAPI
Author: Niko Zhang
Author-email: 334743423@qq.com
License: UNKNOWN
Keywords: wechat cowechat
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

# cowechatapi
这是一个发送消息到企业微信的接口工具
仅支持在python3环境下执行，支持系统:Linux、windows其他暂未验证
消息类型支持: 文本、图片、声音、视频和文件

## 安装依赖
```shell script
pip install requests
```
## pip安装 ##
```shell script
pip install cowechatapi
```

## 通过调用API接口发送消息
调用企业微信API接口发送消息给指定用户
**文本消息例子:**

```python
from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="text", content="今天天气好吗?")
```

**文件消息例子:**

```python
from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="file", media_id="MEDIA_ID")
```

**图片消息例子:**
```python
from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="image", media_id="MEDIA_ID")
```

## media_id的获取方法是通过API的upload上传临时素材得到的，临时素材有效期为两天。 ##

**上传临时素材例子:**
```python
from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.upload(filetype="image", fileurl="FILE_PATH")
```

## 通过命令行方式发送消息

**例子:**
```shell script
# 发送文本消息
python3 -m cowechat -i [your_company_id] -s [your_app_secret] -a [your_agentid] -m text -c "content" --user [USER_NAME]
# 发送图片消息
python3 -m cowechat -i [your_company_id] -s [your_app_secret] -a [your_agentid] -m image --media [media_id] --user [USER_NAME]
```


