Home | History | Annotate | only in /external/python/google-api-python-client
Up to higher level directory
NameDateSize
.coveragerc22-Oct-2020147
.github/22-Oct-2020
.hgignore22-Oct-2020286
.kokoro/22-Oct-2020
Android.bp22-Oct-20201K
apiclient/22-Oct-2020
CHANGELOG22-Oct-202015.4K
CODE_OF_CONDUCT.md22-Oct-20201.9K
describe.py22-Oct-202010K
docs/22-Oct-2020
expandsymlinks.py22-Oct-20201.7K
googleapiclient/22-Oct-2020
LICENSE22-Oct-2020767
Makefile22-Oct-20201.2K
MANIFEST.in22-Oct-2020179
METADATA22-Oct-2020404
MODULE_LICENSE_APACHE222-Oct-20200
NOTICE22-Oct-2020767
OWNERS22-Oct-2020227
README.md22-Oct-20202.3K
samples/22-Oct-2020
samples-index.py22-Oct-20206.9K
setup.py22-Oct-20202.6K
sitecustomize.py22-Oct-2020363
tests/22-Oct-2020
tools/22-Oct-2020
tox.ini22-Oct-2020677

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 
      5 This 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 
      7 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.
      8 
      9 ## Google Cloud Platform
     10 
     11 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.
     12 
     13 # Installation
     14 To install, simply use `pip` or `easy_install`:
     15 
     16 ```bash
     17 $ pip install --upgrade google-api-python-client
     18 ```
     19 or
     20 ```bash
     21 $ easy_install --upgrade google-api-python-client
     22 ```
     23 
     24 See 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
     27 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
     28 
     29 # Deprecated Python Versions
     30 Python == 2.7
     31 
     32 # Third Party Libraries and Dependencies
     33 The 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 
     37 For 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
     43 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.
     44