• Home
Name Date Size #Lines LOC

..--

.github/03-May-2024-9060

.kokoro/03-May-2024-11974

apiclient/03-May-2024-3928

docs/03-May-2024-1,596,1441,505,238

googleapiclient/03-May-2024-5,3593,965

samples/03-May-2024-5,4363,608

tests/03-May-2024-16,68515,515

tools/03-May-2024-6937

.coveragercD03-May-2024147 87

.gitignoreD03-May-2024151 1411

Android.bpD03-May-20242.2 KiB7067

CHANGELOGD03-May-202419.2 KiB503380

CODE_OF_CONDUCT.mdD03-May-20241.9 KiB4435

LICENSED03-May-2024767 2316

MANIFEST.inD03-May-2024179 98

METADATAD03-May-2024429 2019

MODULE_LICENSE_APACHE2D03-May-20240

MakefileD03-May-20241.2 KiB4738

OWNERSD03-May-2024227 65

README.mdD03-May-20242.6 KiB6843

describe.pyD03-May-202411.7 KiB457345

expandsymlinks.pyD03-May-20241.7 KiB5924

samples-index.pyD03-May-20247.5 KiB254181

setup.pyD03-May-20242.6 KiB7853

sitecustomize.pyD03-May-2024363 133

tox.iniD03-May-2024751 2523

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 [docs folder](docs/README.md).
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## Documentation
10
11See the [docs folder](docs/README.md) for more detailed instructions and additional documentation.
12
13## Google Cloud Platform / Google Ads
14
15For 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).
16
17For Google Ads API, we recommend using [Google Ads API Client Library for Python](https://github.com/googleads/google-ads-python/).
18
19## Installation
20
21Install this library in a [virtualenv](https://virtualenv.pypa.io/en/latest/) using pip. virtualenv is a tool to
22create isolated Python environments. The basic problem it addresses is one of
23dependencies and versions, and indirectly permissions.
24
25With virtualenv, it's possible to install this library without needing system
26install permissions, and without clashing with the installed system
27dependencies.
28
29### Mac/Linux
30
31```
32pip install virtualenv
33virtualenv <your-env>
34source <your-env>/bin/activate
35<your-env>/bin/pip install google-api-python-client
36```
37
38### Windows
39
40```
41pip install virtualenv
42virtualenv <your-env>
43<your-env>\Scripts\activate
44<your-env>\Scripts\pip.exe install google-api-python-client
45```
46
47## Supported Python Versions
48
49Python 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
50
51## Deprecated Python Versions
52
53Python == 2.7
54
55## Third Party Libraries and Dependencies
56
57The following libraries will be installed when you install the client library:
58* [httplib2](https://github.com/httplib2/httplib2)
59* [uritemplate](https://github.com/sigmavirus24/uritemplate)
60
61For development you will also need the following libraries:
62* [WebTest](http://webtest.pythonpaste.org/en/latest/index.html)
63* [pyopenssl](https://pypi.python.org/pypi/pyOpenSSL)
64
65## Contributing
66
67Please 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.
68