Skip to main content

企业微信接口封装库

Project description

Work Weixin Api

PyPI PyPI - Downloads PyPI - Python Version PyPI - License

企业微信接口封装库

目前实现了简单的发送消息功能,后序按照业务继续增加其他接口

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


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 hashes)

Uploaded Source

Built Distribution

work_weixin_api-0.0.3-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page