Jon Wayne Parrott | 24d87e8 | 2017-01-11 13:29:02 -0800 | [diff] [blame] | 1 | Google Auth Python Library |
| 2 | ========================== |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 3 | |
Bu Sun Kim | 1b9de8d | 2020-01-22 16:09:31 -0800 | [diff] [blame] | 4 | |pypi| |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 5 | |
| 6 | This library simplifies using Google's various server-to-server authentication |
| 7 | mechanisms to access Google APIs. |
| 8 | |
Jon Wayne Parrott | 90c1c1b | 2016-12-14 12:43:30 -0800 | [diff] [blame] | 9 | .. |pypi| image:: https://img.shields.io/pypi/v/google-auth.svg |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 10 | :target: https://pypi.python.org/pypi/google-auth |
| 11 | |
| 12 | Installing |
| 13 | ---------- |
| 14 | |
Jon Wayne Parrott | 2b773f3 | 2016-10-10 13:32:16 -0700 | [diff] [blame] | 15 | You can install using `pip`_:: |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 16 | |
Jon Wayne Parrott | 2b773f3 | 2016-10-10 13:32:16 -0700 | [diff] [blame] | 17 | $ pip install google-auth |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 18 | |
Jon Wayne Parrott | 2b773f3 | 2016-10-10 13:32:16 -0700 | [diff] [blame] | 19 | .. _pip: https://pip.pypa.io/en/stable/ |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 20 | |
michaelawyu | ddf3cec | 2017-10-13 10:20:44 -0700 | [diff] [blame] | 21 | For 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 | |
Christopher Wilcox | 3f73694 | 2018-12-14 12:24:38 -0800 | [diff] [blame] | 25 | Supported Python Versions |
| 26 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
Tres Seaver | 560cf1e | 2021-08-03 16:35:54 -0400 | [diff] [blame] | 27 | Python >= 3.6 |
Christopher Wilcox | 3f73694 | 2018-12-14 12:24:38 -0800 | [diff] [blame] | 28 | |
Tres Seaver | 560cf1e | 2021-08-03 16:35:54 -0400 | [diff] [blame] | 29 | Unsupported 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`. |
Christopher Wilcox | 3f73694 | 2018-12-14 12:24:38 -0800 | [diff] [blame] | 36 | |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 37 | Documentation |
| 38 | ------------- |
| 39 | |
Bu Sun Kim | 1b9de8d | 2020-01-22 16:09:31 -0800 | [diff] [blame] | 40 | Google Auth Python Library has usage and reference documentation at https://googleapis.dev/python/google-auth/latest/index.html. |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 41 | |
Bu Sun Kim | ae3bafd | 2019-10-02 14:05:04 -0700 | [diff] [blame] | 42 | Current Maintainers |
| 43 | ------------------- |
| 44 | - `@busunkim96 <https://github.com/busunkim96>`_ (Bu Sun Kim) |
| 45 | |
| 46 | Authors |
| 47 | ------- |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 48 | |
Christopher Wilcox | 5f65d27 | 2018-09-19 10:35:40 -0700 | [diff] [blame] | 49 | - `@theacodes <https://github.com/theacodes>`_ (Thea Flowers) |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 50 | - `@dhermes <https://github.com/dhermes>`_ (Danny Hermes) |
Jon Wayne Parrott | 709953d | 2017-04-17 13:13:13 -0700 | [diff] [blame] | 51 | - `@lukesneeringer <https://github.com/lukesneeringer>`_ (Luke Sneeringer) |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | Contributing |
| 54 | ------------ |
| 55 | |
| 56 | Contributions to this library are always welcome and highly encouraged. |
| 57 | |
Jon Wayne Parrott | 246df81 | 2016-10-21 14:31:06 -0700 | [diff] [blame] | 58 | See `CONTRIBUTING.rst`_ for more information on how to get started. |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 59 | |
Anthonios Partheniou | b86480e | 2021-08-25 12:41:18 -0400 | [diff] [blame] | 60 | .. _CONTRIBUTING.rst: https://github.com/googleapis/google-auth-library-python/blob/main/CONTRIBUTING.rst |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | License |
| 63 | ------- |
| 64 | |
Jon Wayne Parrott | 246df81 | 2016-10-21 14:31:06 -0700 | [diff] [blame] | 65 | Apache 2.0 - See `the LICENSE`_ for more information. |
Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 66 | |
Anthonios Partheniou | b86480e | 2021-08-25 12:41:18 -0400 | [diff] [blame] | 67 | .. _the LICENSE: https://github.com/googleapis/google-auth-library-python/blob/main/LICENSE |