Metadata-Version: 2.1
Name: discovery-client
Version: 1.0.0b5
Summary: async consul client
Home-page: https://github.com/amenezes/discovery-client
Author: alexandre menezes
Author-email: alexandre.fmenezes@gmail.com
License: Apache-2.0
Project-URL: Documentation, https://discovery-client.amenezes.net
Project-URL: Code, https://github.com/amenezes/discovery-client
Project-URL: Issue tracker, https://github.com/amenezes/discovery-client/issues
Keywords: consul,service discovery,service catalog
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: AsyncIO
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8.*
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=3.6.2)
Provides-Extra: aiocli
Requires-Dist: cleo (>=0.7.6) ; extra == 'aiocli'
Provides-Extra: all
Requires-Dist: aiohttp (>=3.6.2) ; extra == 'all'
Requires-Dist: httpx (>=0.16.1) ; extra == 'all'
Requires-Dist: cleo (>=0.7.6) ; extra == 'all'
Provides-Extra: httpx
Requires-Dist: httpx (>=0.16.1) ; extra == 'httpx'
Provides-Extra: httpxcli
Requires-Dist: cleo (>=0.7.6) ; extra == 'httpxcli'
Requires-Dist: httpx (>=0.16.1) ; extra == 'httpxcli'

[![ci](https://github.com/amenezes/discovery-client/workflows/ci/badge.svg)](https://github.com/amenezes/discovery-client/actions)
[![Maintainability](https://api.codeclimate.com/v1/badges/fc7916aab464c8b7d742/maintainability)](https://codeclimate.com/github/amenezes/discovery-client/maintainability)
[![codecov](https://codecov.io/gh/amenezes/discovery-client/branch/master/graph/badge.svg)](https://codecov.io/gh/amenezes/discovery-client)
[![PyPI version](https://badge.fury.io/py/discovery-client.svg)](https://badge.fury.io/py/discovery-client)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/discovery-client)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

# discovery-client

async client for [consul](https://consul.io).

## Installing

Install and update using pip:

### aiohttp client

````bash
pip install -U discovery-client
````

### httpx client

````bash
pip install -U discovery-client[httpx]
````

## Links

- License: [Apache License](https://choosealicense.com/licenses/apache-2.0/)
- Code: [https://github.com/amenezes/discovery-client](https://github.com/amenezes/discovery-client)
- Issue tracker: [https://github.com/amenezes/discovery-client/issues](https://github.com/amenezes/discovery-client/issues)
- Docs: [https://discovery-client.amenezes.net](https://discovery-client.amenezes.net)


