• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

apitools/23-Nov-2023-22,71616,995

samples/23-Nov-2023-25,37622,530

.coveragercD23-Nov-2023148 98

.gitignoreD23-Nov-2023214 1915

.travis.ymlD23-Nov-2023680 2827

Android.bpD23-Nov-20231,002 3229

LICENSED23-Nov-202311.1 KiB203169

MANIFEST.inD23-Nov-2023106 65

METADATAD23-Nov-2023445 2019

MODULE_LICENSE_APACHE2D23-Nov-20230

OWNERSD23-Nov-2023210 54

README.rstD23-Nov-20231.3 KiB4830

ez_setup.pyD23-Nov-20238.7 KiB267187

setup.cfgD23-Nov-202352 43

setup.pyD23-Nov-20232.8 KiB10169

tox.iniD23-Nov-20231.3 KiB6357

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