• Home
Name Date Size #Lines LOC

..--

.github/03-May-2024-12574

.kokoro/03-May-2024-1,6101,033

docs/03-May-2024-1,7301,069

google/03-May-2024-13,4409,719

scripts/03-May-2024-21980

system_tests/03-May-2024-2,1971,300

testing/03-May-2024-3534

tests/03-May-2024-15,45611,683

tests_async/03-May-2024-3,3932,471

.coveragercD03-May-2024315 1614

.flake8D03-May-2024126 98

.gitignoreD03-May-2024568 4840

.repo-metadata.jsonD03-May-2024403 1211

.trampolinercD03-May-20241.7 KiB6455

Android.bpD03-May-20241.4 KiB5349

CHANGELOG.mdD03-May-202461.8 KiB895466

CODE_OF_CONDUCT.mdD03-May-20241.9 KiB4435

CONTRIBUTING.rstD03-May-20246.6 KiB195122

CONTRIBUTORS.mdD03-May-20243.5 KiB9789

LICENSED03-May-202411.1 KiB202169

MANIFEST.inD03-May-2024100 43

METADATAD03-May-2024465 1917

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202411.1 KiB202169

README.rstD03-May-20241.9 KiB6843

SECURITY.mdD03-May-2024329 84

noxfile.pyD03-May-20244.6 KiB170133

owlbot.pyD03-May-2024768 3321

renovate.jsonD03-May-202467 65

setup.cfgD03-May-202427 22

setup.pyD03-May-20242.9 KiB8660

README.rst

1Google Auth Python Library
2==========================
3
4|pypi|
5
6This library simplifies using Google's various server-to-server authentication
7mechanisms to access Google APIs.
8
9.. |pypi| image:: https://img.shields.io/pypi/v/google-auth.svg
10   :target: https://pypi.python.org/pypi/google-auth
11
12Installing
13----------
14
15You can install using `pip`_::
16
17    $ pip install google-auth
18
19.. _pip: https://pip.pypa.io/en/stable/
20
21For more information on setting up your Python development environment, please refer to `Python Development Environment Setup Guide`_ for Google Cloud Platform.
22
23.. _`Python Development Environment Setup Guide`: https://cloud.google.com/python/setup
24
25Supported Python Versions
26^^^^^^^^^^^^^^^^^^^^^^^^^
27Python >= 3.6
28
29Unsupported Python Versions
30^^^^^^^^^^^^^^^^^^^^^^^^^^^
31- Python == 2.7:  The last version of this library with support for Python 2.7
32  was `google.auth == 1.34.0`.
33
34- Python 3.5:   The last version of this library with support for Python 3.5
35  was `google.auth == 1.23.0`.
36
37Documentation
38-------------
39
40Google Auth Python Library has usage and reference documentation at https://googleapis.dev/python/google-auth/latest/index.html.
41
42Current Maintainers
43-------------------
44- `@busunkim96 <https://github.com/busunkim96>`_ (Bu Sun Kim)
45
46Authors
47-------
48
49- `@theacodes <https://github.com/theacodes>`_ (Thea Flowers)
50- `@dhermes <https://github.com/dhermes>`_ (Danny Hermes)
51- `@lukesneeringer <https://github.com/lukesneeringer>`_ (Luke Sneeringer)
52
53Contributing
54------------
55
56Contributions to this library are always welcome and highly encouraged.
57
58See `CONTRIBUTING.rst`_ for more information on how to get started.
59
60.. _CONTRIBUTING.rst: https://github.com/googleapis/google-auth-library-python/blob/main/CONTRIBUTING.rst
61
62License
63-------
64
65Apache 2.0 - See `the LICENSE`_ for more information.
66
67.. _the LICENSE: https://github.com/googleapis/google-auth-library-python/blob/main/LICENSE
68