{"id":51598818,"url":"https://github.com/wxpusher/wxpusher-sdk-python","last_synced_at":"2026-07-11T20:01:41.650Z","repository":{"id":40264321,"uuid":"234451167","full_name":"wxpusher/wxpusher-sdk-python","owner":"wxpusher","description":"微信消息实时推送服务[WxPusher]的Python版本sdk，可以通过API实时给个人微信推送消息。wechat pusher. ","archived":false,"fork":false,"pushed_at":"2024-07-08T08:46:59.000Z","size":15,"stargazers_count":286,"open_issues_count":0,"forks_count":50,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-03-14T10:18:44.861Z","etag":null,"topics":["notification","push-notification","python","python-sdk","python3","wechat","weixin","wxpusher"],"latest_commit_sha":null,"homepage":"http://wxpusher.zjiecode.com/demo","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wxpusher.png","metadata":{"files":{"readme":"README-en.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-17T02:08:43.000Z","updated_at":"2026-03-03T01:32:17.000Z","dependencies_parsed_at":"2024-06-19T03:03:54.418Z","dependency_job_id":"ae9bc776-4bbe-4dfe-b02c-f96e11c98350","html_url":"https://github.com/wxpusher/wxpusher-sdk-python","commit_stats":{"total_commits":5,"total_committers":3,"mean_commits":"1.6666666666666667","dds":0.4,"last_synced_commit":"be88accf02c249e37845cb941578a466c9464fd2"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/wxpusher/wxpusher-sdk-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxpusher%2Fwxpusher-sdk-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxpusher%2Fwxpusher-sdk-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxpusher%2Fwxpusher-sdk-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxpusher%2Fwxpusher-sdk-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wxpusher","download_url":"https://codeload.github.com/wxpusher/wxpusher-sdk-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxpusher%2Fwxpusher-sdk-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35374165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["notification","push-notification","python","python-sdk","python3","wechat","weixin","wxpusher"],"created_at":"2026-07-11T20:01:37.953Z","updated_at":"2026-07-11T20:01:41.634Z","avatar_url":"https://github.com/wxpusher.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WxPusher\n\n[![PyPI version](https://badge.fury.io/py/wxpusher.svg)](https://badge.fury.io/py/wxpusher)\n[![PyPI license](https://img.shields.io/pypi/l/wxpusher.svg)](https://pypi.python.org/pypi/wxpusher/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/wxpusher.svg)](https://pypi.python.org/pypi/wxpusher/)\n[![Downloads](https://pepy.tech/badge/wxpusher)](https://pepy.tech/project/wxpusher)\n\nWxPusher Python SDK.\n\n*Read this in other languages: [English](README-en.md), [简体中文](README.md).*\n\n## Getting Started\n\n### Installation\n\n```shell\npip install -U wxpusher\n```\n\n### Usage\n\n```python\nfrom wxpusher import WxPusher\nWxPusher.send_message('\u003ccontent\u003e',\n                      uids=['\u003cuids\u003e'],\n                      topic_ids=['\u003ctopic_ids\u003e'],\n                      token='\u003cappToken\u003e')\nWxPusher.query_message('\u003cmessageId\u003e')\nWxPusher.create_qrcode('\u003cextra\u003e', '\u003cvalidTime\u003e', '\u003cappToken\u003e')\nWxPusher.query_user('\u003cpage\u003e', '\u003cpage_size\u003e', '\u003cappToken\u003e')\n```\n\n## Running the tests\n\n### Setup configuration\n\nConfiguration is necessary since the tests depend on VALID `appToken` and `uids`.\n\nFrist, copy the configuration sample `config.sample.py` under `wxpusher/tests/` to `config.py`\n\n```shell\ncd wxpusher/tests\ncp config.sample.py config.py\n```\n\nThen, fill in the corresponding information in `config.py`.\n\n### Trigger the tests\n\nWith proper configuration, you can run the tests with tox\n\n```shell\ntox\n```\n\nor nose directly\n\n```shell\nnosetests\n```\n\n## TODO\n\n- [x] Basic structure with PyPI uploaded.\n- [x] Send Message.\n- [x] Query Message.\n- [x] Create QRCode.\n- [x] Query User.\n- [ ] More client validators.\n- [ ] Command line scripts.\n- [ ] Better documentation.\n- [ ] More robust unittest.\n\n## Contribution\n\n- Comments or suggestions via github issues.\n- Pull requests are welcome absolutely.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwxpusher%2Fwxpusher-sdk-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwxpusher%2Fwxpusher-sdk-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwxpusher%2Fwxpusher-sdk-python/lists"}