$ python -m pip install aetcdRun asyncio REPL:
$ python -m asyncioTest 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')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.