Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
apitools/ | 03-May-2024 | - | 22,708 | 16,987 | ||
samples/ | 03-May-2024 | - | 28,759 | 25,911 | ||
.coveragerc | D | 03-May-2024 | 148 | 9 | 8 | |
.gitignore | D | 03-May-2024 | 214 | 19 | 15 | |
.travis.yml | D | 03-May-2024 | 680 | 28 | 27 | |
Android.bp | D | 03-May-2024 | 1,002 | 32 | 29 | |
LICENSE | D | 03-May-2024 | 11.1 KiB | 203 | 169 | |
MANIFEST.in | D | 03-May-2024 | 106 | 6 | 5 | |
METADATA | D | 03-May-2024 | 445 | 20 | 19 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
OWNERS | D | 03-May-2024 | 210 | 5 | 4 | |
README.rst | D | 03-May-2024 | 1.3 KiB | 48 | 30 | |
ez_setup.py | D | 03-May-2024 | 8.7 KiB | 267 | 187 | |
setup.cfg | D | 03-May-2024 | 52 | 4 | 3 | |
setup.py | D | 03-May-2024 | 2.8 KiB | 101 | 69 | |
tox.ini | D | 03-May-2024 | 1.3 KiB | 63 | 57 |
README.rst
1google-apitools 2=============== 3 4|pypi| |build| |coverage| 5 6``google-apitools`` is a collection of utilities to make it easier to build 7client-side tools, especially those that talk to Google APIs. 8 9**NOTE**: This library is stable, but in maintenance mode, and not under 10active development. However, any bugs or security issues will be fixed 11promptly. 12 13Installing as a library 14----------------------- 15 16To install the library into the current virtual environment:: 17 18 $ pip install google-apitools 19 20Installing the command-line tools 21--------------------------------- 22 23To install the command-line scripts into the current virtual environment:: 24 25 $ pip install google-apitools[cli] 26 27Running the tests 28----------------- 29 30First, install the testing dependencies:: 31 32 $ pip install google-apitools[testing] 33 34and the ``nose`` testrunner:: 35 36 $ pip install nose 37 38Then run the tests:: 39 40 $ nosetests 41 42.. |build| image:: https://travis-ci.org/google/apitools.svg?branch=master 43 :target: https://travis-ci.org/google/apitools 44.. |pypi| image:: https://img.shields.io/pypi/v/google-apitools.svg 45 :target: https://pypi.python.org/pypi/google-apitools 46.. |coverage| image:: https://coveralls.io/repos/google/apitools/badge.svg?branch=master 47 :target: https://coveralls.io/r/google/apitools?branch=master 48