• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/25-Apr-2025-12574

.kokoro/25-Apr-2025-1,6101,033

docs/25-Apr-2025-1,7301,069

google/25-Apr-2025-13,4409,719

scripts/25-Apr-2025-21980

system_tests/25-Apr-2025-2,1971,300

testing/25-Apr-2025-3534

tests/25-Apr-2025-15,45611,683

tests_async/25-Apr-2025-3,3932,471

.coveragercD25-Apr-2025315 1614

.flake8D25-Apr-2025126 98

.gitignoreD25-Apr-2025568 4840

.repo-metadata.jsonD25-Apr-2025403 1211

.trampolinercD25-Apr-20251.7 KiB6455

Android.bpD25-Apr-20251.3 KiB4541

CHANGELOG.mdD25-Apr-202561.8 KiB895466

CODE_OF_CONDUCT.mdD25-Apr-20251.9 KiB4435

CONTRIBUTING.rstD25-Apr-20256.6 KiB195122

CONTRIBUTORS.mdD25-Apr-20253.5 KiB9789

LICENSED25-Apr-202511.1 KiB202169

MANIFEST.inD25-Apr-2025100 43

METADATAD25-Apr-2025465 1917

MODULE_LICENSE_APACHE2D25-Apr-20250

NOTICED25-Apr-202511.1 KiB202169

README.rstD25-Apr-20251.9 KiB6843

SECURITY.mdD25-Apr-2025329 84

noxfile.pyD25-Apr-20254.6 KiB170133

owlbot.pyD25-Apr-2025768 3321

renovate.jsonD25-Apr-202567 65

setup.cfgD25-Apr-202527 22

setup.pyD25-Apr-20252.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