• Home
Name Date Size #Lines LOC

..--

apitools/04-Jul-2025-22,84517,117

samples/04-Jul-2025-28,81025,940

.coveragercD04-Jul-2025148 98

.gitignoreD04-Jul-2025214 1915

.travis.ymlD04-Jul-2025680 2827

Android.bpD04-Jul-20251,002 3229

LICENSED04-Jul-202511.1 KiB203169

MANIFEST.inD04-Jul-2025122 76

METADATAD04-Jul-2025674 2119

MODULE_LICENSE_APACHE2D04-Jul-20250

OWNERSD04-Jul-2025282 65

README.rstD04-Jul-20251.7 KiB5534

ez_setup.pyD04-Jul-20258.7 KiB267187

setup.cfgD04-Jul-202588 75

setup.pyD04-Jul-20252.8 KiB10169

tox.iniD04-Jul-20251.2 KiB6256

README.rst

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