martyanov / aetcd

Python asyncio-based client for etcd

Home Page:https://aetcd.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Python asyncio-based client for etcd

https://aetcd.readthedocs.io

License:Apache License 2.0


Languages

Language:Python 98.9%Language:Makefile 1.1%