Python asyncio-based client for etcd

Build Status Coverage report Documentation PyPI Version Supported Python Versions License

Installation

$ python -m pip install aetcd

Basic usage

Run asyncio REPL:

$ python -m asyncio

Test the client:

import aetcd

async with aetcd.Client() as client:
    await client.put(b'foo', b'bar')
    await client.get(b'foo')
    await client.delete(b'foo')

Acknowledgements

This project is a fork of etcd3aio, which itself is a fork of python-etcd3. python-etcd3 was originally written by kragniz. asyncio suppport was contributed by hron and based on the previous work by gjcarneiro. Many thanks to all the people involved in the project.