• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1**DEPRECATED - Please see alternatives below**
2
3google-apitools
4===============
5
6|pypi| |build| |coverage|
7
8``google-apitools`` is a collection of utilities to make it easier to build
9client-side tools, especially those that talk to Google APIs.
10
11**NOTE**: This library is deprecated and unsupported. Please read below for suggested alternatives.
12
13Alternatives to apitools
14-----------------------
15For the official Cloud client libraries used to communicating with Google Cloud APIs, go to https://cloud.google.com/apis/docs/cloud-client-libraries.
16
17To generate Python API client libraries for APIs specified by protos, such as those inside Google, see https://github.com/googleapis/gapic-generator-python.
18API client library generators for other languages can be found in https://github.com/googleapis.
19
20Installing as a library
21-----------------------
22
23To install the library into the current virtual environment::
24
25   $ pip install google-apitools
26
27Installing the command-line tools
28---------------------------------
29
30To install the command-line scripts into the current virtual environment::
31
32   $ pip install google-apitools[cli]
33
34Running the tests
35-----------------
36
37First, install the testing dependencies::
38
39   $ pip install google-apitools[testing]
40
41and the ``nose`` testrunner::
42
43   $ pip install nose
44
45Then run the tests::
46
47   $ nosetests
48
49.. |build| image:: https://travis-ci.org/google/apitools.svg?branch=master
50   :target: https://travis-ci.org/google/apitools
51.. |pypi| image:: https://img.shields.io/pypi/v/google-apitools.svg
52   :target: https://pypi.python.org/pypi/google-apitools
53.. |coverage| image:: https://coveralls.io/repos/google/apitools/badge.svg?branch=master
54   :target: https://coveralls.io/r/google/apitools?branch=master
55