Skip to content

martyanov/aetcd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

81268de · May 24, 2023
Apr 12, 2023
May 24, 2023
May 24, 2023
Dec 25, 2021
May 16, 2023
Jun 18, 2020
Jun 11, 2020
Jun 9, 2020
May 24, 2023
Jan 2, 2022
Jan 2, 2022
Apr 12, 2023
May 24, 2023

Repository files navigation

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.