Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
docs/ | 03-May-2024 | - | 728 | 527 | ||
oauth2client/ | 03-May-2024 | - | 9,546 | 6,966 | ||
samples/ | 03-May-2024 | - | 96 | 48 | ||
scripts/ | 03-May-2024 | - | 400 | 227 | ||
tests/ | 03-May-2024 | - | 10,307 | 7,681 | ||
.coveragerc | D | 03-May-2024 | 340 | 13 | 12 | |
.gitignore | D | 03-May-2024 | 395 | 31 | 24 | |
.travis.yml | D | 03-May-2024 | 944 | 44 | 41 | |
Android.bp | D | 03-May-2024 | 1,010 | 32 | 29 | |
CHANGELOG.md | D | 03-May-2024 | 16.5 KiB | 426 | 333 | |
CONTRIBUTING.md | D | 03-May-2024 | 8.4 KiB | 209 | 167 | |
LICENSE | D | 03-May-2024 | 746 | 23 | 16 | |
MANIFEST.in | D | 03-May-2024 | 44 | 3 | 2 | |
METADATA | D | 03-May-2024 | 384 | 18 | 16 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
Makefile | D | 03-May-2024 | 37 | 6 | 4 | |
OWNERS | D | 03-May-2024 | 207 | 5 | 4 | |
README.md | D | 03-May-2024 | 1.1 KiB | 30 | 20 | |
setup.py | D | 03-May-2024 | 2.2 KiB | 73 | 49 | |
tox.ini | D | 03-May-2024 | 4.4 KiB | 179 | 165 |
README.md
1[![Build Status](https://travis-ci.org/google/oauth2client.svg?branch=master)](https://travis-ci.org/google/oauth2client) 2[![Coverage Status](https://coveralls.io/repos/google/oauth2client/badge.svg?branch=master&service=github)](https://coveralls.io/github/google/oauth2client?branch=master) 3[![Documentation Status](https://readthedocs.org/projects/oauth2client/badge/?version=latest)](https://oauth2client.readthedocs.io/) 4 5This is a client library for accessing resources protected by OAuth 2.0. 6 7Installation 8============ 9 10To install, simply run the following command in your terminal: 11 12```bash 13$ pip install --upgrade oauth2client 14``` 15 16Contributing 17============ 18 19Please see the [CONTRIBUTING page][1] for more information. In particular, we 20love pull requests -- but please make sure to sign the contributor license 21agreement. 22 23Supported Python Versions 24========================= 25 26We support Python 2.6, 2.7, 3.3+. More information [in the docs][2]. 27 28[1]: https://github.com/google/oauth2client/blob/master/CONTRIBUTING.md 29[2]: https://oauth2client.readthedocs.io/#supported-python-versions 30