etcd-io / etcd

Distributed reliable key-value store for the most critical data of a distributed system
https://etcd.io
Apache License 2.0
47.43k stars 9.73k forks source link

Which is the ETCD3 officially recommended python client? #13285

Closed hqsh closed 3 years ago

hqsh commented 3 years ago

I have use some ETCD3 clients in python. The best one of these is https://github.com/kragniz/python-etcd3.

But all of these have a lot of bugs or the projects are not maintained now.

So, I wonder which is the ETCD3 officially recommended python client?

Thank you!

davissp14 commented 3 years ago

That's the main client for Etcdv3 to my knowledge.

They maintain a list of clients here: https://etcd.io/docs/v3.5/integrations/#python

spzala commented 3 years ago

@davissp14 thanks! Closing as question is answered.

Machoney commented 3 months ago

This list may be in need of updating as none of the packages are currently under active maintenance. As of the day of June 21, 2024:

kragniz/python-etcd3 - Client for v3
Last commit: Aug 17 2020, Last Release: Mar 31 2020

jplana/python-etcd - Supports v2 Last commit: Oct 31 2023, Last Release Mar 3, 2017

russellhaering/txetcd - a Twisted Python library Last Commit: Oct 28 2013, Last Release: Oct 1, 2013

cholcombe973/autodock - A docker deployment automation tool Last Commit: Mar 26 2014

lisael/aioetcd - (Python 3.4+) Asyncio coroutines client (Supports v2) Last Commit: Dec 18, 2014

txaio-etcd - Asynchronous etcd v3-only client library for Twisted (today) and asyncio (future) Last Commit: Feb 22, 2019, Last Release: Oct 11, 2018

dims/etcd3-gateway - etcd v3 API library using the HTTP grpc gateway Last Commit: Aug 13, 2020, Last Release: Jun 30, 2020

aioetcd3 - (Python 3.6+) etcd v3 API for asyncio - Last Commit: Sep 30, 2020 Revolution1/etcd3-py - (python2.7 and python3.5+) Python client for etcd v3, using gRPC-JSON-Gateway - Last Commit: May 10, 2022, Last Release: May 10, 2019

Packages that are not maintained anymore, should not be officially supported as a preferred packages.

chrislalos commented 2 months ago

@Machoney Can you recommend an actively maintained alternatives? I haven't had any luck finding one.

socketpair commented 1 month ago

Personally, I stick to its http API (and websockets for watching). UNFORTUNATELY.