blob: ce19d54448e61d44c81b406da88117b1c8ff2072 [file] [log] [blame] [view]
Matt Whisenhunt3c2c8052018-04-13 10:03:46 -07001# Google API Client
Dan O'Meara9c203d32017-07-07 09:03:31 -07002
Michael Mattioli460a4ad2014-08-01 21:37:56 -04003This is the Python client library for Google's discovery based APIs. To get started, please see the [full documentation for this library](http://google.github.io/google-api-python-client). Additionally, [dynamically generated documentation](http://api-python-client-doc.appspot.com/) is available for all of the APIs supported by this library.
John Asmuth2fefc4c2014-04-24 16:13:05 -04004
Matt Whisenhunt3c2c8052018-04-13 10:03:46 -07005These 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.
6
7## Google Cloud Platform
8
9For 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.
Joe Gregorio8097e2a2011-05-17 11:11:34 -040010
Michael Mattioli2b2705a2014-07-14 13:52:54 -040011# Installation
Craig Citro3f8dc782014-05-19 15:00:07 -070012To install, simply use `pip` or `easy_install`:
Joe Gregorio46675d22012-06-20 12:15:24 -040013
Michael Mattiolib2b518f2014-07-14 00:48:04 -040014```bash
Michael Mattioli460a4ad2014-08-01 21:37:56 -040015$ pip install --upgrade google-api-python-client
Michael Mattiolib2b518f2014-07-14 00:48:04 -040016```
Craig Citro4cc527f2014-05-19 15:01:17 -070017or
Michael Mattiolib2b518f2014-07-14 00:48:04 -040018```bash
Michael Mattioli460a4ad2014-08-01 21:37:56 -040019$ easy_install --upgrade google-api-python-client
Michael Mattiolib2b518f2014-07-14 00:48:04 -040020```
Tom Miller7c95d812010-10-11 11:50:52 -070021
Michael Mattiolib2b518f2014-07-14 00:48:04 -040022See the [Developers Guide](https://developers.google.com/api-client-library/python/start/get_started) for more detailed instructions and additional documentation.
Joe Gregorio48d361f2010-08-18 13:19:21 -040023
Jay Lee9cd0eb02014-09-12 07:15:11 -040024# Python Version
Jon Wayne Parrott12751ca2017-01-31 09:21:36 -080025Python 2.7, 3.4, 3.5, and 3.6 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.
Jay Lee9cd0eb02014-09-12 07:15:11 -040026
Michael Mattioli460a4ad2014-08-01 21:37:56 -040027# Third Party Libraries and Dependencies
Michael Mattiolib2b518f2014-07-14 00:48:04 -040028The following libraries will be installed when you install the client library:
Luis Nell4859b142016-08-01 18:43:35 +020029* [httplib2](https://github.com/httplib2/httplib2)
Simon Weberc952fd02016-10-13 12:48:44 -040030* [uritemplate](https://github.com/sigmavirus24/uritemplate)
Joe Gregorio8097e2a2011-05-17 11:11:34 -040031
Michael Mattioli460a4ad2014-08-01 21:37:56 -040032For development you will also need the following libraries:
andrewnester31677812017-03-31 16:39:30 +030033* [WebTest](http://webtest.pythonpaste.org/en/latest/index.html)
Michael Mattioli460a4ad2014-08-01 21:37:56 -040034* [pycrypto](https://pypi.python.org/pypi/pycrypto)
35* [pyopenssl](https://pypi.python.org/pypi/pyOpenSSL)
Craig Citro3f8dc782014-05-19 15:00:07 -070036
Michael Mattioli2b2705a2014-07-14 13:52:54 -040037# Contributing
Jay Lee9cd0eb02014-09-12 07:15:11 -040038Please 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.