企业微信接口封装库
Project description
Work Weixin Api
企业微信接口封装库
目前实现了简单的发送消息功能,后序按照业务继续增加其他接口
install
pip install work-weixin-api
demo
# -*- coding: utf-8 -*-
from work_weixin_api import WorkWeixinClient
class CustomWorkWeixinClient(WorkWeixinClient):
"""配置自己企业的信息"""
# 企业id
corpid = ""
# 秘钥
corpsecret = ""
# 应用id
agent_id = "100000"
if __name__ == '__main__':
client = CustomWorkWeixinClient()
print(client.user_simplelist(department_id=1))
# 发送消息
print(client.message_send_text(
agentid=client.agent_id,
content='hi',
touser="PengShiYu"
))
说明
核心类继承关系:
class WorkWeixinApi(object):
"""
实现了最基础的企业微信接口函数
"""
class WorkWeixinClient(WorkWeixinApi):
"""
扩展了基本的接口函数
1、对access_token 进行了缓存
2、简化了接口调用操作
"""
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
work-weixin-api-0.0.3.tar.gz
(5.8 kB
view details)
Built Distribution
File details
Details for the file work-weixin-api-0.0.3.tar.gz
.
File metadata
- Download URL: work-weixin-api-0.0.3.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a5153379155fb98bd38b0ed6d90738fe8d5b3cfdc19b1a793a47df828b8a496 |
|
MD5 | b5788ff5f8f8b58a430a35a4df065be6 |
|
BLAKE2b-256 | d4e84299ea4cac7d41528c8edb723d5bcbcb8eaa9809ac9f0449a0747426d6f0 |
File details
Details for the file work_weixin_api-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: work_weixin_api-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd295c2b779465f9c07d800d2bb09d30c093586e66d54707e592450e136edee8 |
|
MD5 | 5ed68345447ffda5c74acc07ef9d14bd |
|
BLAKE2b-256 | 3f1439c82d44b5ad84af19be98cf83e95c87efc601b06a6b98e779784a4195b5 |