Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ It achieves this by
- doing this with minimal performance impact via the use of advanced caching and aggregation algorithms
- making this easy to integrate via a set of `WSGI`_ middleware

.. _`WSGI`: https://wsgi.readthedocs.io/en/latest/


Example:

.. code:: python
Expand All @@ -37,51 +40,50 @@ Example:
Installation
-------------

Install using pip
Install using `pip`_

.. code:: bash

[sudo] pip install google-endpoints-api-management

.. _`pip`: https://pip.pypa.io


Python Versions
---------------

google-endpoints-api-management is currently tested with Python 2.7.
endpoints-management-python is currently tested with Python 2.7.


Contributing
------------

Contributions to this library are always welcome and highly encouraged.

See the `CONTRIBUTING`_ documentation for more information on how to get started.
See the `CONTRIBUTING documentation`_ for more information on how to get started.

.. _`CONTRIBUTING documentation`: https://github.com/cloudendpoints/endpoints-management-python/blob/master/CONTRIBUTING.rst


Versioning
----------

This library follows `Semantic Versioning`_

It is currently in major version zero (``0.y.z``), which means that anything may
change at any time and the public API should not be considered stable.
.. _`Semantic Versioning`: http://semver.org/


Details
-------

For detailed documentation of the modules in google-endpoints-api-management, please watch `DOCUMENTATION`_.
For detailed documentation of the modules in endpoints-management-python, please watch `DOCUMENTATION`_.

.. _`DOCUMENTATION`: https://endpoints-management-python.readthedocs.org/


License
-------

Apache - See `LICENSE`_ for more information.
Apache - See `the full LICENSE`_ for more information.

.. _`CONTRIBUTING`: https://github.com/googleapis/google-endpoints-api-management/blob/master/CONTRIBUTING.rst
.. _`LICENSE`: https://github.com/googleapis/google-endpoints-api-management/blob/master/LICENSE
.. _`Install virtualenv`: http://docs.python-guide.org/en/latest/dev/virtualenvs/
.. _`pip`: https://pip.pypa.io
.. _`Semantic Versioning`: http://semver.org/
.. _`DOCUMENTATION`: https://google-endpoints-api-management.readthedocs.org/
.. _`WSGI`: https://wsgi.readthedocs.io/en/latest/
.. _`the full LICENSE`: https://github.com/cloudendpoints/endpoints-management-python/blob/master/LICENSE
2 changes: 1 addition & 1 deletion google/api/control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import google.api.gen.servicecontrol_v1_messages as messages
import google.api.gen.servicecontrol_v1_client as api_client

__version__ = '1.0.0b2'
__version__ = '1.0.0b3'

# Alias the generated MetricKind and ValueType enums to simplify their usage
# elsewhere
Expand Down