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

..--

.github/23-Nov-2023-9060

.kokoro/23-Nov-2023-6330

apiclient/23-Nov-2023-3728

docs/23-Nov-2023-671,173620,186

googleapiclient/23-Nov-2023-5,0993,740

samples/23-Nov-2023-5,4443,615

tests/23-Nov-2023-16,35415,184

tools/23-Nov-2023-6937

.coveragercD23-Nov-2023147 87

.gitD01-Jan-19700

.gitignoreD23-Nov-2023151 1411

Android.bpD23-Nov-20231 KiB3736

CHANGELOGD23-Nov-202315.4 KiB432329

CODE_OF_CONDUCT.mdD23-Nov-20231.9 KiB4435

LICENSED23-Nov-2023767 2316

MANIFEST.inD23-Nov-2023179 98

METADATAD23-Nov-2023404 1918

MODULE_LICENSE_APACHE2D23-Nov-20230

MakefileD23-Nov-20231.2 KiB4738

NOTICED23-Nov-2023767 2316

OWNERSD23-Nov-2023227 65

README.mdD23-Nov-20232.3 KiB4430

describe.pyD23-Nov-202310 KiB406300

expandsymlinks.pyD23-Nov-20231.7 KiB5924

samples-index.pyD23-Nov-20236.9 KiB248175

setup.pyD23-Nov-20232.6 KiB8359

sitecustomize.pyD23-Nov-2023363 133

tox.iniD23-Nov-2023677 2321

README.md

1# Google API Client
2
3[![PyPI version](https://badge.fury.io/py/google-api-python-client.svg)](https://badge.fury.io/py/google-api-python-client)
4
5This is the Python client library for Google's discovery based APIs. To get started, please see the [full documentation for this library](https://developers.google.com/api-client-library/python/). Additionally, [dynamically generated documentation](http://google.github.io/google-api-python-client/docs/epy/index.html) is available for all of the APIs supported by this library.
6
7These 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.
8
9## Google Cloud Platform
10
11For 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.
12
13# Installation
14To install, simply use `pip` or `easy_install`:
15
16```bash
17$ pip install --upgrade google-api-python-client
18```
19or
20```bash
21$ easy_install --upgrade google-api-python-client
22```
23
24See the [Developers Guide](https://developers.google.com/api-client-library/python/start/get_started) for more detailed instructions and additional documentation.
25
26# Supported Python Versions
27Python 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
28
29# Deprecated Python Versions
30Python == 2.7
31
32# Third Party Libraries and Dependencies
33The following libraries will be installed when you install the client library:
34* [httplib2](https://github.com/httplib2/httplib2)
35* [uritemplate](https://github.com/sigmavirus24/uritemplate)
36
37For development you will also need the following libraries:
38* [WebTest](http://webtest.pythonpaste.org/en/latest/index.html)
39* [pycrypto](https://pypi.python.org/pypi/pycrypto)
40* [pyopenssl](https://pypi.python.org/pypi/pyOpenSSL)
41
42# Contributing
43Please 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.
44