Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | 25-Apr-2025 | - | 125 | 74 | ||
.kokoro/ | 25-Apr-2025 | - | 1,610 | 1,033 | ||
docs/ | 25-Apr-2025 | - | 1,730 | 1,069 | ||
google/ | 25-Apr-2025 | - | 13,440 | 9,719 | ||
scripts/ | 25-Apr-2025 | - | 219 | 80 | ||
system_tests/ | 25-Apr-2025 | - | 2,197 | 1,300 | ||
testing/ | 25-Apr-2025 | - | 35 | 34 | ||
tests/ | 25-Apr-2025 | - | 15,456 | 11,683 | ||
tests_async/ | 25-Apr-2025 | - | 3,393 | 2,471 | ||
.coveragerc | D | 25-Apr-2025 | 315 | 16 | 14 | |
.flake8 | D | 25-Apr-2025 | 126 | 9 | 8 | |
.gitignore | D | 25-Apr-2025 | 568 | 48 | 40 | |
.repo-metadata.json | D | 25-Apr-2025 | 403 | 12 | 11 | |
.trampolinerc | D | 25-Apr-2025 | 1.7 KiB | 64 | 55 | |
Android.bp | D | 25-Apr-2025 | 1.3 KiB | 45 | 41 | |
CHANGELOG.md | D | 25-Apr-2025 | 61.8 KiB | 895 | 466 | |
CODE_OF_CONDUCT.md | D | 25-Apr-2025 | 1.9 KiB | 44 | 35 | |
CONTRIBUTING.rst | D | 25-Apr-2025 | 6.6 KiB | 195 | 122 | |
CONTRIBUTORS.md | D | 25-Apr-2025 | 3.5 KiB | 97 | 89 | |
LICENSE | D | 25-Apr-2025 | 11.1 KiB | 202 | 169 | |
MANIFEST.in | D | 25-Apr-2025 | 100 | 4 | 3 | |
METADATA | D | 25-Apr-2025 | 465 | 19 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
NOTICE | D | 25-Apr-2025 | 11.1 KiB | 202 | 169 | |
README.rst | D | 25-Apr-2025 | 1.9 KiB | 68 | 43 | |
SECURITY.md | D | 25-Apr-2025 | 329 | 8 | 4 | |
noxfile.py | D | 25-Apr-2025 | 4.6 KiB | 170 | 133 | |
owlbot.py | D | 25-Apr-2025 | 768 | 33 | 21 | |
renovate.json | D | 25-Apr-2025 | 67 | 6 | 5 | |
setup.cfg | D | 25-Apr-2025 | 27 | 2 | 2 | |
setup.py | D | 25-Apr-2025 | 2.9 KiB | 86 | 60 |
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