METADATA 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. Metadata-Version: 2.0
  2. Name: oauthlib
  3. Version: 2.0.2
  4. Summary: A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
  5. Home-page: https://github.com/idan/oauthlib
  6. Author: Ib Lundgren
  7. Author-email: ib.lundgren@gmail.com
  8. License: BSD
  9. Platform: any
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Environment :: Web Environment
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved
  14. Classifier: License :: OSI Approved :: BSD License
  15. Classifier: Operating System :: MacOS
  16. Classifier: Operating System :: POSIX
  17. Classifier: Operating System :: POSIX :: Linux
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3.3
  21. Classifier: Programming Language :: Python :: 3.4
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Programming Language :: Python :: Implementation
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: PyPy
  26. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  27. Provides-Extra: rsa
  28. Requires-Dist: cryptography; extra == 'rsa'
  29. Provides-Extra: signals
  30. Requires-Dist: blinker; extra == 'signals'
  31. Provides-Extra: signedtoken
  32. Requires-Dist: cryptography; extra == 'signedtoken'
  33. Requires-Dist: pyjwt (>=1.0.0); extra == 'signedtoken'
  34. Provides-Extra: test
  35. Requires-Dist: blinker; extra == 'test'
  36. Requires-Dist: cryptography; extra == 'test'
  37. Requires-Dist: mock; extra == 'test'
  38. Requires-Dist: nose; extra == 'test'
  39. Requires-Dist: pyjwt (>=1.0.0); extra == 'test'
  40. Requires-Dist: unittest2; extra == 'test'
  41. OAuthLib
  42. ========
  43. *A generic, spec-compliant, thorough implementation of the OAuth request-signing
  44. logic for python*
  45. .. image:: https://travis-ci.org/idan/oauthlib.png?branch=master
  46. :target: https://travis-ci.org/idan/oauthlib
  47. .. image:: https://coveralls.io/repos/idan/oauthlib/badge.png?branch=master
  48. :target: https://coveralls.io/r/idan/oauthlib
  49. OAuth often seems complicated and difficult-to-implement. There are several
  50. prominent libraries for handling OAuth requests, but they all suffer from one or
  51. both of the following:
  52. 1. They predate the `OAuth 1.0 spec`_, AKA RFC 5849.
  53. 2. They predate the `OAuth 2.0 spec`_, AKA RFC 6749.
  54. 3. They assume the usage of a specific HTTP request library.
  55. .. _`OAuth 1.0 spec`: http://tools.ietf.org/html/rfc5849
  56. .. _`OAuth 2.0 spec`: http://tools.ietf.org/html/rfc6749
  57. OAuthLib is a generic utility which implements the logic of OAuth without
  58. assuming a specific HTTP request object or web framework. Use it to graft OAuth
  59. client support onto your favorite HTTP library, or provide support onto your
  60. favourite web framework. If you're a maintainer of such a library, write a thin
  61. veneer on top of OAuthLib and get OAuth support for very little effort.
  62. Documentation
  63. --------------
  64. Full documentation is available on `Read the Docs`_. All contributions are very
  65. welcome! The documentation is still quite sparse, please open an issue for what
  66. you'd like to know, or discuss it in our `G+ community`_, or even better, send a
  67. pull request!
  68. .. _`G+ community`: https://plus.google.com/communities/101889017375384052571
  69. .. _`Read the Docs`: https://oauthlib.readthedocs.io/en/latest/index.html
  70. Interested in making OAuth requests?
  71. ------------------------------------
  72. Then you might be more interested in using `requests`_ which has OAuthLib
  73. powered OAuth support provided by the `requests-oauthlib`_ library.
  74. .. _`requests`: https://github.com/kennethreitz/requests
  75. .. _`requests-oauthlib`: https://github.com/requests/requests-oauthlib
  76. Which web frameworks are supported?
  77. -----------------------------------
  78. The following packages provide OAuth support using OAuthLib.
  79. - For Django there is `django-oauth-toolkit`_, which includes `Django REST framework`_ support.
  80. - For Flask there is `flask-oauthlib`_ and `Flask-Dance`_.
  81. - For Pyramid there is `pyramid-oauthlib`_.
  82. If you have written an OAuthLib package that supports your favorite framework,
  83. please open a Pull Request, updating the documentation.
  84. .. _`django-oauth-toolkit`: https://github.com/evonove/django-oauth-toolkit
  85. .. _`flask-oauthlib`: https://github.com/lepture/flask-oauthlib
  86. .. _`Django REST framework`: http://django-rest-framework.org
  87. .. _`Flask-Dance`: https://github.com/singingwolfboy/flask-dance
  88. .. _`pyramid-oauthlib`: https://github.com/tilgovi/pyramid-oauthlib
  89. Using OAuthLib? Please get in touch!
  90. ------------------------------------
  91. Patching OAuth support onto an http request framework? Creating an OAuth
  92. provider extension for a web framework? Simply using OAuthLib to Get Things Done
  93. or to learn?
  94. No matter which we'd love to hear from you in our `G+ community`_ or if you have
  95. anything in particular you would like to have, change or comment on don't
  96. hesitate for a second to send a pull request or open an issue. We might be quite
  97. busy and therefore slow to reply but we love feedback!
  98. Chances are you have run into something annoying that you wish there was
  99. documentation for, if you wish to gain eternal fame and glory, and a drink if we
  100. have the pleasure to run into eachother, please send a docs pull request =)
  101. .. _`G+ community`: https://plus.google.com/communities/101889017375384052571
  102. License
  103. -------
  104. OAuthLib is yours to use and abuse according to the terms of the BSD license.
  105. Check the LICENSE file for full details.
  106. Changelog
  107. ---------
  108. *OAuthLib is in active development, with the core of both OAuth 1 and 2
  109. completed, for providers as well as clients.* See `supported features`_ for
  110. details.
  111. .. _`supported features`: https://oauthlib.readthedocs.io/en/latest/feature_matrix.html
  112. For a full changelog see ``CHANGELOG.rst``.