Python client for the etcd v3 API for python >= 3.7
Python client for the etcd API v3, supported python >= 3.7, under active maintenance
pip install etcd-sdk-python
version | release date | target | status |
---|---|---|---|
0.0.1 | Apr 10,2023 | enable >= python3.7 | DONE |
0.0.2 | Jun 6,2023 | DONE | |
0.0.3 | ND | set up github actions, run pass unittests, set up merging rules, ensure quality | WIP |
functions | version | status |
---|---|---|
make ut work | 0.0.2 | BACKLOG |
make tox.ini work | 0.0.2 | BACKLOG |
enable running ut for pull requests | 0.0.2 | BACKLOG |
enable running lint for pull requests | 0.0.2 | BACKLOG |
enable publishing dev packages for merge | 0.0.2 | BACKLOG |
Add mergify to help merging PRs | 0.0.2 | BACKLOG |
import pyetcd
etcd = pyetcd.client()
etcd.get('foo')
etcd.put('bar', 'doot')
etcd.delete('bar')
# locks
lock = etcd.lock('thing')
lock.acquire()
# do something
lock.release()
with etcd.lock('doot-machine') as lock:
# do something
# transactions
etcd.transaction(
compare=[
etcd.transactions.value('/doot/testing') == 'doot',
etcd.transactions.version('/doot/testing') > 0,
],
success=[
etcd.transactions.put('/doot/testing', 'success'),
],
failure=[
etcd.transactions.put('/doot/testing', 'failure'),
]
)
# watch key
watch_count = 0
events_iterator, cancel = etcd.watch("/doot/watch")
for event in events_iterator:
print(event)
watch_count += 1
if watch_count > 10:
cancel()
# watch prefix
watch_count = 0
events_iterator, cancel = etcd.watch_prefix("/doot/watch/prefix/")
for event in events_iterator:
print(event)
watch_count += 1
if watch_count > 10:
cancel()
# recieve watch events via callback function
def watch_callback(event):
print(event)
watch_id = etcd.add_watch_callback("/anotherkey", watch_callback)
# cancel watch
etcd.cancel_watch(watch_id)
# recieve watch events for a prefix via callback function
def watch_callback(event):
print(event)
watch_id = etcd.add_watch_prefix_callback("/doot/watch/prefix/", watch_callback)
# cancel watch
etcd.cancel_watch(watch_id)
Many thx to python-etcd3