Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | 03-May-2024 | - | 90 | 60 | ||
.kokoro/ | 03-May-2024 | - | 63 | 30 | ||
apiclient/ | 03-May-2024 | - | 37 | 28 | ||
docs/ | 03-May-2024 | - | 1,596,674 | 1,505,659 | ||
googleapiclient/ | 03-May-2024 | - | 5,105 | 3,746 | ||
samples/ | 03-May-2024 | - | 5,436 | 3,608 | ||
tests/ | 03-May-2024 | - | 16,376 | 15,202 | ||
tools/ | 03-May-2024 | - | 69 | 37 | ||
.coveragerc | D | 03-May-2024 | 147 | 8 | 7 | |
.gitignore | D | 03-May-2024 | 151 | 14 | 11 | |
Android.bp | D | 03-May-2024 | 1 KiB | 37 | 36 | |
CHANGELOG | D | 03-May-2024 | 17.4 KiB | 473 | 357 | |
CODE_OF_CONDUCT.md | D | 03-May-2024 | 1.9 KiB | 44 | 35 | |
LICENSE | D | 03-May-2024 | 767 | 23 | 16 | |
MANIFEST.in | D | 03-May-2024 | 179 | 9 | 8 | |
METADATA | D | 03-May-2024 | 406 | 19 | 18 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
Makefile | D | 03-May-2024 | 1.2 KiB | 47 | 38 | |
NOTICE | D | 03-May-2024 | 767 | 23 | 16 | |
OWNERS | D | 03-May-2024 | 227 | 6 | 5 | |
README.md | D | 03-May-2024 | 2.5 KiB | 55 | 33 | |
TEST_MAPPING | D | 03-May-2024 | 88 | 9 | 8 | |
describe.py | D | 03-May-2024 | 10.9 KiB | 428 | 317 | |
expandsymlinks.py | D | 03-May-2024 | 1.7 KiB | 59 | 24 | |
samples-index.py | D | 03-May-2024 | 6.9 KiB | 248 | 175 | |
setup.py | D | 03-May-2024 | 2.6 KiB | 83 | 59 | |
sitecustomize.py | D | 03-May-2024 | 363 | 13 | 3 | |
tox.ini | D | 03-May-2024 | 772 | 26 | 24 |
README.md
1 # Google API Client 2 3 [](https://badge.fury.io/py/google-api-python-client) 4 [](https://python-compatibility-tools.appspot.com/one_badge_target?package=google-api-python-client) 5 [](https://python-compatibility-tools.appspot.com/one_badge_target?package=git%2Bgit%3A//github.com/googleapis/google-api-python-client.git) 6 7 This is the Python client library for Google's discovery based APIs. To get started, please see the [docs folder](docs/README.md). 8 9 These client libraries are officially supported by Google. However, the libraries are considered complete and are in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features. 10 11 ## Documentation 12 13 See the [docs folder](docs/README.md) for more detailed instructions and additional documentation. 14 15 ## Google Cloud Platform 16 17 For Google Cloud Platform APIs such as Datastore, Cloud Storage or Pub/Sub, we recommend using [Cloud Client Libraries for Python](https://github.com/GoogleCloudPlatform/google-cloud-python) which is under active development. 18 19 ## Installation 20 21 To install, simply use `pip` or `easy_install`: 22 23 ```bash 24 pip install --upgrade google-api-python-client 25 ``` 26 27 or 28 29 ```bash 30 easy_install --upgrade google-api-python-client 31 ``` 32 33 ## Supported Python Versions 34 35 Python 3.4, 3.5, 3.6 and 3.7 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions 36 37 ## Deprecated Python Versions 38 39 Python == 2.7 40 41 ## Third Party Libraries and Dependencies 42 43 The following libraries will be installed when you install the client library: 44 * [httplib2](https://github.com/httplib2/httplib2) 45 * [uritemplate](https://github.com/sigmavirus24/uritemplate) 46 47 For development you will also need the following libraries: 48 * [WebTest](http://webtest.pythonpaste.org/en/latest/index.html) 49 * [pycrypto](https://pypi.python.org/pypi/pycrypto) 50 * [pyopenssl](https://pypi.python.org/pypi/pyOpenSSL) 51 52 ## Contributing 53 54 Please see the [contributing page](http://google.github.io/google-api-python-client/contributing.html) for more information. In particular, we love pull requests - but please make sure to sign the contributor license agreement. 55