METADATA 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. Metadata-Version: 2.1
  2. Name: oauthlib
  3. Version: 3.2.2
  4. Summary: A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
  5. Home-page: https://github.com/oauthlib/oauthlib
  6. Author: The OAuthlib Community
  7. Author-email: idan@gazit.me
  8. Maintainer: Ib Lundgren
  9. Maintainer-email: ib.lundgren@gmail.com
  10. License: BSD
  11. Platform: any
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Environment :: Web Environment
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved
  16. Classifier: License :: OSI Approved :: BSD License
  17. Classifier: Operating System :: MacOS
  18. Classifier: Operating System :: POSIX
  19. Classifier: Operating System :: POSIX :: Linux
  20. Classifier: Programming Language :: Python
  21. Classifier: Programming Language :: Python :: 3
  22. Classifier: Programming Language :: Python :: 3.6
  23. Classifier: Programming Language :: Python :: 3.7
  24. Classifier: Programming Language :: Python :: 3.8
  25. Classifier: Programming Language :: Python :: 3.9
  26. Classifier: Programming Language :: Python :: 3.10
  27. Classifier: Programming Language :: Python :: 3 :: Only
  28. Classifier: Programming Language :: Python :: Implementation
  29. Classifier: Programming Language :: Python :: Implementation :: CPython
  30. Classifier: Programming Language :: Python :: Implementation :: PyPy
  31. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  32. Requires-Python: >=3.6
  33. Description-Content-Type: text/x-rst
  34. License-File: LICENSE
  35. Provides-Extra: rsa
  36. Requires-Dist: cryptography (>=3.0.0) ; extra == 'rsa'
  37. Provides-Extra: signals
  38. Requires-Dist: blinker (>=1.4.0) ; extra == 'signals'
  39. Provides-Extra: signedtoken
  40. Requires-Dist: cryptography (>=3.0.0) ; extra == 'signedtoken'
  41. Requires-Dist: pyjwt (<3,>=2.0.0) ; extra == 'signedtoken'
  42. OAuthLib - Python Framework for OAuth1 & OAuth2
  43. ===============================================
  44. *A generic, spec-compliant, thorough implementation of the OAuth request-signing
  45. logic for Python 3.6+.*
  46. .. image:: https://app.travis-ci.com/oauthlib/oauthlib.svg?branch=master
  47. :target: https://app.travis-ci.com/oauthlib/oauthlib
  48. :alt: Travis
  49. .. image:: https://coveralls.io/repos/oauthlib/oauthlib/badge.svg?branch=master
  50. :target: https://coveralls.io/r/oauthlib/oauthlib
  51. :alt: Coveralls
  52. .. image:: https://img.shields.io/pypi/pyversions/oauthlib.svg
  53. :target: https://pypi.org/project/oauthlib/
  54. :alt: Download from PyPI
  55. .. image:: https://img.shields.io/pypi/l/oauthlib.svg
  56. :target: https://pypi.org/project/oauthlib/
  57. :alt: License
  58. .. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Foauthlib%2Foauthlib.svg?type=shield
  59. :target: https://app.fossa.io/projects/git%2Bgithub.com%2Foauthlib%2Foauthlib?ref=badge_shield
  60. :alt: FOSSA Status
  61. .. image:: https://img.shields.io/readthedocs/oauthlib.svg
  62. :target: https://oauthlib.readthedocs.io/en/latest/index.html
  63. :alt: Read the Docs
  64. .. image:: https://badges.gitter.im/oauthlib/oauthlib.svg
  65. :target: https://gitter.im/oauthlib/Lobby
  66. :alt: Chat on Gitter
  67. .. image:: https://raw.githubusercontent.com/oauthlib/oauthlib/8d71b161fd145d11c40d55c9ab66ac134a303253/docs/logo/oauthlib-banner-700x192.png
  68. :target: https://github.com/oauthlib/oauthlib/
  69. :alt: OAuth + Python = OAuthlib Python Framework
  70. OAuth often seems complicated and difficult-to-implement. There are several
  71. prominent libraries for handling OAuth requests, but they all suffer from one or
  72. both of the following:
  73. 1. They predate the `OAuth 1.0 spec`_, AKA RFC 5849.
  74. 2. They predate the `OAuth 2.0 spec`_, AKA RFC 6749.
  75. 3. They assume the usage of a specific HTTP request library.
  76. .. _`OAuth 1.0 spec`: https://tools.ietf.org/html/rfc5849
  77. .. _`OAuth 2.0 spec`: https://tools.ietf.org/html/rfc6749
  78. OAuthLib is a framework which implements the logic of OAuth1 or OAuth2 without
  79. assuming a specific HTTP request object or web framework. Use it to graft OAuth
  80. client support onto your favorite HTTP library, or provide support onto your
  81. favourite web framework. If you're a maintainer of such a library, write a thin
  82. veneer on top of OAuthLib and get OAuth support for very little effort.
  83. Documentation
  84. --------------
  85. Full documentation is available on `Read the Docs`_. All contributions are very
  86. welcome! The documentation is still quite sparse, please open an issue for what
  87. you'd like to know, or discuss it in our `Gitter community`_, or even better, send a
  88. pull request!
  89. .. _`Gitter community`: https://gitter.im/oauthlib/Lobby
  90. .. _`Read the Docs`: https://oauthlib.readthedocs.io/en/latest/index.html
  91. Interested in making OAuth requests?
  92. ------------------------------------
  93. Then you might be more interested in using `requests`_ which has OAuthLib
  94. powered OAuth support provided by the `requests-oauthlib`_ library.
  95. .. _`requests`: https://github.com/requests/requests
  96. .. _`requests-oauthlib`: https://github.com/requests/requests-oauthlib
  97. Which web frameworks are supported?
  98. -----------------------------------
  99. The following packages provide OAuth support using OAuthLib.
  100. - For Django there is `django-oauth-toolkit`_, which includes `Django REST framework`_ support.
  101. - For Flask there is `flask-oauthlib`_ and `Flask-Dance`_.
  102. - For Pyramid there is `pyramid-oauthlib`_.
  103. - For Bottle there is `bottle-oauthlib`_.
  104. If you have written an OAuthLib package that supports your favorite framework,
  105. please open a Pull Request, updating the documentation.
  106. .. _`django-oauth-toolkit`: https://github.com/evonove/django-oauth-toolkit
  107. .. _`flask-oauthlib`: https://github.com/lepture/flask-oauthlib
  108. .. _`Django REST framework`: http://django-rest-framework.org
  109. .. _`Flask-Dance`: https://github.com/singingwolfboy/flask-dance
  110. .. _`pyramid-oauthlib`: https://github.com/tilgovi/pyramid-oauthlib
  111. .. _`bottle-oauthlib`: https://github.com/thomsonreuters/bottle-oauthlib
  112. Using OAuthLib? Please get in touch!
  113. ------------------------------------
  114. Patching OAuth support onto an http request framework? Creating an OAuth
  115. provider extension for a web framework? Simply using OAuthLib to Get Things Done
  116. or to learn?
  117. No matter which we'd love to hear from you in our `Gitter community`_ or if you have
  118. anything in particular you would like to have, change or comment on don't
  119. hesitate for a second to send a pull request or open an issue. We might be quite
  120. busy and therefore slow to reply but we love feedback!
  121. Chances are you have run into something annoying that you wish there was
  122. documentation for, if you wish to gain eternal fame and glory, and a drink if we
  123. have the pleasure to run into each other, please send a docs pull request =)
  124. .. _`Gitter community`: https://gitter.im/oauthlib/Lobby
  125. License
  126. -------
  127. OAuthLib is yours to use and abuse according to the terms of the BSD license.
  128. Check the LICENSE file for full details.
  129. Credits
  130. -------
  131. OAuthLib has been started and maintained several years by Idan Gazit and other
  132. amazing `AUTHORS`_. Thanks to their wonderful work, the open-source `community`_
  133. creation has been possible and the project can stay active and reactive to users
  134. requests.
  135. .. _`AUTHORS`: https://github.com/oauthlib/oauthlib/blob/master/AUTHORS
  136. .. _`community`: https://github.com/oauthlib/
  137. Changelog
  138. ---------
  139. *OAuthLib is in active development, with the core of both OAuth1 and OAuth2
  140. completed, for providers as well as clients.* See `supported features`_ for
  141. details.
  142. .. _`supported features`: https://oauthlib.readthedocs.io/en/latest/feature_matrix.html
  143. For a full changelog see ``CHANGELOG.rst``.