Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
apitools/ | 04-Jul-2025 | - | 22,845 | 17,117 | ||
samples/ | 04-Jul-2025 | - | 28,810 | 25,940 | ||
.coveragerc | D | 04-Jul-2025 | 148 | 9 | 8 | |
.gitignore | D | 04-Jul-2025 | 214 | 19 | 15 | |
.travis.yml | D | 04-Jul-2025 | 680 | 28 | 27 | |
Android.bp | D | 04-Jul-2025 | 1,002 | 32 | 29 | |
LICENSE | D | 04-Jul-2025 | 11.1 KiB | 203 | 169 | |
MANIFEST.in | D | 04-Jul-2025 | 122 | 7 | 6 | |
METADATA | D | 04-Jul-2025 | 674 | 21 | 19 | |
MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
OWNERS | D | 04-Jul-2025 | 282 | 6 | 5 | |
README.rst | D | 04-Jul-2025 | 1.7 KiB | 55 | 34 | |
ez_setup.py | D | 04-Jul-2025 | 8.7 KiB | 267 | 187 | |
setup.cfg | D | 04-Jul-2025 | 88 | 7 | 5 | |
setup.py | D | 04-Jul-2025 | 2.8 KiB | 101 | 69 | |
tox.ini | D | 04-Jul-2025 | 1.2 KiB | 62 | 56 |
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