METADATA 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. Metadata-Version: 2.1
  2. Name: wechatpy
  3. Version: 1.8.3
  4. Summary: WeChat SDK for Python
  5. Home-page: https://github.com/jxtech/wechatpy
  6. Author: messense
  7. Author-email: messense@icloud.com
  8. License: UNKNOWN
  9. Keywords: WeChat,weixin,SDK
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: License :: OSI Approved :: MIT License
  13. Classifier: Operating System :: MacOS
  14. Classifier: Operating System :: POSIX
  15. Classifier: Operating System :: POSIX :: Linux
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3.5
  19. Classifier: Programming Language :: Python :: 3.6
  20. Classifier: Programming Language :: Python :: 3.7
  21. Classifier: Programming Language :: Python :: Implementation :: CPython
  22. Classifier: Programming Language :: Python :: Implementation :: PyPy
  23. Classifier: Intended Audience :: Developers
  24. Classifier: Topic :: Software Development :: Libraries
  25. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  26. Classifier: Topic :: Utilities
  27. Description-Content-Type: text/markdown
  28. Requires-Dist: six (>=1.8.0)
  29. Requires-Dist: requests (>=2.4.3)
  30. Requires-Dist: xmltodict (>=0.11.0)
  31. Requires-Dist: optionaldict (>=0.1.0)
  32. Requires-Dist: python-dateutil (>=2.5.2)
  33. Requires-Dist: enum34 (>=1.1.4) ; python_version < "3.4"
  34. Provides-Extra: cryptography
  35. Requires-Dist: cryptography ; extra == 'cryptography'
  36. Provides-Extra: pycrypto
  37. Requires-Dist: pycryptodome ; extra == 'pycrypto'
  38. ___ __ _______ ________ ___ ___ ________ _________ ________ ___ ___
  39. |\ \ |\ \|\ ___ \ |\ ____\|\ \|\ \|\ __ \|\___ ___\\ __ \|\ \ / /|
  40. \ \ \ \ \ \ \ __/|\ \ \___|\ \ \\\ \ \ \|\ \|___ \ \_\ \ \|\ \ \ \/ / /
  41. \ \ \ __\ \ \ \ \_|/_\ \ \ \ \ __ \ \ __ \ \ \ \ \ \ ____\ \ / /
  42. \ \ \|\__\_\ \ \ \_|\ \ \ \____\ \ \ \ \ \ \ \ \ \ \ \ \ \ \___|\/ / /
  43. \ \____________\ \_______\ \_______\ \__\ \__\ \__\ \__\ \ \__\ \ \__\ __/ / /
  44. \|____________|\|_______|\|_______|\|__|\|__|\|__|\|__| \|__| \|__||\___/ /
  45. \|___|/
  46. [![Build Status](https://travis-ci.org/jxtech/wechatpy.svg?branch=master)](https://travis-ci.org/jxtech/wechatpy)
  47. [![Build status](https://ci.appveyor.com/api/projects/status/sluy95tvbe090af1/branch/master?svg=true)](https://ci.appveyor.com/project/messense/wechatpy-den93/branch/master)
  48. [![codecov.io](https://codecov.io/github/jxtech/wechatpy/coverage.svg?branch=master)](https://codecov.io/github/jxtech/wechatpy?branch=master)
  49. [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jxtech/wechatpy/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jxtech/wechatpy/?branch=master)
  50. [![PyPI](https://img.shields.io/pypi/v/wechatpy.svg)](https://pypi.org/project/wechatpy)
  51. [![Downloads](https://pepy.tech/badge/wechatpy)](https://pepy.tech/project/wechatpy)
  52. [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjxtech%2Fwechatpy.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjxtech%2Fwechatpy?ref=badge_shield)
  53. [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
  54. 微信(WeChat) 公众平台第三方 Python SDK。
  55. [【阅读文档】](https://wechatpy.readthedocs.org/zh_CN/master/) [【快速入门】](https://wechatpy.readthedocs.org/zh_CN/master/quickstart.html)
  56. [![Join the chat at https://gitter.im/messense/wechatpy](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/messense/wechatpy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
  57. ## 功能特性
  58. 1. 普通公众平台被动响应和主动调用 API
  59. 2. 企业微信 API
  60. 3. 微信支付 API
  61. ## 安装
  62. 推荐使用 pip 进行安装:
  63. ```bash
  64. pip install wechatpy
  65. # with cryptography (推荐)
  66. pip install wechatpy[cryptography]
  67. # with pycryptodome
  68. pip install wechatpy[pycrypto]
  69. ```
  70. 升级版本:
  71. pip install -U wechatpy
  72. ## 使用示例
  73. 使用示例参见 [examples](examples/)
  74. ## 贡献代码
  75. 请阅读 [贡献代码指南](.github/CONTRIBUTING.md)
  76. ## 问题反馈
  77. 我们主要使用 [GitHub issues](https://github.com/jxtech/wechatpy/issues) 进行问题追踪和反馈。
  78. QQ 群:176596300
  79. ![wechatpy QQ 群](https://raw.githubusercontent.com/jxtech/wechatpy/master/docs/_static/images/qq-group.png)
  80. ## License
  81. This work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file.
  82. [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjxtech%2Fwechatpy.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjxtech%2Fwechatpy?ref=badge_large)