1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
Metadata-Version: 2.4
Name: google-auth-httplib2
Version: 0.2.1
Summary: Google Authentication Library: httplib2 transport
Home-page: https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2
Author: Google Cloud Platform
Author-email: googleapis-packages@google.com
License: Apache 2.0
Keywords: google auth oauth client
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.7
License-File: LICENSE
Requires-Dist: google-auth<3.0.0,>=1.32.0
Requires-Dist: httplib2<1.0.0,>=0.19.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
``httplib2`` Transport for Google Auth
======================================
.. image:: https://img.shields.io/badge/status-deprecated-red.svg
:target: https://github.com/httplib2/httplib2
The library was created to help clients migrate from `oauth2client <https://github.com/googleapis/oauth2client>`_ to `google-auth`_, however this library is no longer maintained. For any new usages please see provided transport layers by `google-auth`_ library.
Documentation
-------------
`httplib2 Transport for Google Auth Documentation`_
Introduction
------------
|pypi|
This library provides an `httplib2`_ transport for `google-auth`_.
.. note:: ``httplib`` has lots of problems such as lack of threadsafety
and insecure usage of TLS. Using it is highly discouraged. This
library is intended to help existing users of ``oauth2client`` migrate to
``google-auth``.
.. |pypi| image:: https://img.shields.io/pypi/v/google-auth-httplib2.svg
:target: https://pypi.python.org/pypi/google-auth-httplib2
.. _httplib2: https://github.com/httplib2/httplib2
.. _httplib2 Transport for Google Auth Documentation: https://googleapis.dev/python/google-auth-httplib2/latest
.. _google-auth: https://github.com/GoogleCloudPlatform/google-auth-library-python/
Installing
----------
You can install using `pip`_::
$ pip install google-auth-httplib2
.. _pip: https://pip.pypa.io/en/stable/
License
-------
Apache 2.0 - See `the LICENSE`_ for more information.
.. _the LICENSE: https://github.com/GoogleCloudPlatform/google-auth-library-python/blob/main/LICENSE
|