Python client for the etcd3 API
Project description
python-etcd3
Python client for the etcd API v3.
Warning: this is a work in progress, many basic features do not have a stable API.
If you’re interested in using this library, please get involved.
Free software: Apache Software License 2.0
Documentation: https://python-etcd3.readthedocs.io.
This project is developed using Readme Driven Development, the most hip development methodology.
Fictitious example of api usage:
import etcd3
etcd = etcd3.client()
# or
etcd = etcd3.client(username='root',
password='hunter2',
host='127.0.0.1',
port=1234)
etcd.get('foo')
etcd.put('bar', 'doot')
etcd.delete('bar')
# locks
lock = etcd.lock('thing')
# do something
lock.release()
with etcd.lock('doot-machine') as lock:
# do something
# watching
for event in etcd.watch('some-key'):
print(event)
# 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'),
]
)
# admin stuff
member_id = etcd.add_member('newMember', peer_urls=['https://127.0.0.1:12345'])
etcd.update_member(member_id, peer_urls=['https://127.0.0.1:12345'])
etcd.remove_member(member_id)
for member in etcd.members:
print(member.id, member.name, member.peer_addresses)
member.remove()
History
0.1.0 (2016-09-30)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
etcd3-0.3.1.tar.gz
(43.2 kB
view details)
File details
Details for the file etcd3-0.3.1.tar.gz
.
File metadata
- Download URL: etcd3-0.3.1.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98317ed17ec11ce956b33a066c1c1cf52b09b49c492cbdb0fc4137250a739f46 |
|
MD5 | c79d283de8f8e7e3a1a7984700c7d43f |
|
BLAKE2b-256 | 6be209a6deabfc52291fb376f0d1cc373b9a7e66a85e59e88a857254a5a49494 |