Metadata-Version: 2.1
Name: qqpusher
Version: 0.1.4
Summary: SDK for qqpusher
Home-page: https://github.com/Qualthera/qqpusher.git
Author: Qualthera
Author-email: qualthera@163.com
License: GPLv3
Description: ## QQPUSHER
        
        > 本项目是[QQPusher](http://qqpusher.yanxianjun.com/)的`Python SDK`
        > [QQPusher](http://qqpusher.yanxianjun.com/)的使用方法请参考http://qqpusher.yanxianjun.com/
        
        ### 本项目的使用
        
        `pip install qqpusher`
        
        **Demo**
        
        > 这里的`id`可以是`qq号`也可是`qq群号`
        
        ```python
        import qqpusher
        
        if __name__ == '__main__':
            qqpush1 = qqpusher.qqpusher(token="", id="", auto_escape=False)
            qqpush1.send_private_msg("你好呀")
            qqpush2 = qqpusher.qqpusher(token="", id="", auto_escape=False)
            qqpush2.send_group_msg("大家好")
            qqpush2.set_group_mute_all(True)
            qqpush2.set_group_mute(1018921994, 60)
            qqpush2.set_group_name("测试群名")
            qqpush2.set_group_memo("测试群公告")
        
        ```
        
        **函数列表**
        
        - send_private_msg(self, message)
        - send_group_msg(self, message)
        - set_group_mute_all(self, isMute)
        - set_group_mute(self, member_id, mute_time)
        - set_group_name(self, group_name)
        - set_group_memo(self, memo)
        
        ### 鸣谢
        
        [yanxianjun](https://github.com/yanxianjun)开发维护的[QQPusher推送服务](http://qqpusher.yanxianjun.com/)
        
Platform: all
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
