Python client for etcd server version 2.3.x and later
Project description
k3etcd
A python client for Etcd https://github.com/coreos/etcd This module will only work correctly with the etcd server version 2.3.x or later.
k3etcd is a component of pykit3 project: a python3 toolkit set.
Description
A python client for Etcd https://github.com/coreos/etcd
This module will only work correctly with the etcd server version 2.3.x or later.
Install
pip install k3etcd
Synopsis
import k3etcd
hosts=(
('192.168.0.100', 2379),
('192.168.0.101', 2379),
('192.168.0.102', 2379),
)
try:
c = k3etcd.Client(host=hosts)
c.set('test_key', 'test_val')
res = c.get('test_key')
# type(res) is EtcdKeysResult
# res.key == 'test_key'
# res.value == 'test_val'
# res.dir == False
# ...
# c.st_leader
# out type is `dict`
# {
# "leader": "991200c666cc4678",
# "followers":{
# "183ebbe2e22ee250": {
# "latency": {
# "current": 0.00095,
# "average": 0.09798531413612557,
# "standardDeviation": 1.3282931634902915,
# "minimum": 0.000635,
# "maximum": 18.407235
# },
# "counts": {
# "fail": 0,
# "success": 191
# }
# },
# "291578612bc6deb": {
# "latency": {
# "current": 0.000949,
# "average": 0.001928250000000001,
# "standardDeviation": 0.0018525034545722491,
# "minimum": 0.000876,
# "maximum": 0.017505
# },
# "counts": {
# "fail": 0,
# "success": 188
# }
# },
# }
# }
# c.st_self
# out type is `dict`
# {
# "name": "node_1",
# "id": "991200c666cc4678",
# "state": "StateLeader",
# "startTime": "2017-06-14T05:20:04.334273309Z",
# "leaderInfo": {
# "leader": "991200c666cc4678",
# "uptime": "4h41m55.43860796s",
# "startTime": "2017-06-14T05:20:04.477688456Z"
# },
# "recvAppendRequestCnt": 0,
# "sendAppendRequestCnt": 736
# }
# c.st_store
# out type is `dict`
# {
# "getsSuccess": 4,
# "getsFail": 7,
# "setsSuccess": 53,
# "setsFail": 0,
# "deleteSuccess": 24,
# "deleteFail": 2,
# "updateSuccess": 2,
# "updateFail": 0,
# "createSuccess": 7,
# "createFail": 1,
# "compareAndSwapSuccess": 3,
# "compareAndSwapFail": 1,
# "compareAndDeleteSuccess": 0,
# "compareAndDeleteFail": 0,
# "expireCount": 3,
# "watchers": 0
# }
n = c.names
# get names of etcd servers
# n=['node1', 'node2', 'node3']
ids = c.ids
# get ids of etcd servers
# ids=['fca771384ed46928', '991200c666cc4678', '4768ce54ee212c95']
peerurls = ['http://192.168.0.103:2380']
c.add_member(*peerurls)
# only register new node
# after it, start the server
peerurls = ['http://192.168.0.102:4380']
c.change_peerurls('fca771384ed46928', *peerurls)
except k3etcd.EtcdException as e:
print(repr(e))
Author
Zhang Yanpo (张炎泼) drdr.xp@gmail.com
Copyright and License
The MIT License (MIT)
Copyright (c) 2015 Zhang Yanpo (张炎泼) drdr.xp@gmail.com
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file k3etcd-0.1.3.tar.gz.
File metadata
- Download URL: k3etcd-0.1.3.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5296b3b1e024b118f7de6cddee2b381c7c80f844cdfdef7abc17a56b29de3962
|
|
| MD5 |
252090a4d13d89427ff5b68203a9826d
|
|
| BLAKE2b-256 |
28608dcc7e38336827469ef45932f4c72a3578d476bf734b3ae99f8f80363140
|
File details
Details for the file k3etcd-0.1.3-py3-none-any.whl.
File metadata
- Download URL: k3etcd-0.1.3-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82ff29dca742d723e3d499e2a9b7da5aebace7466e51c8abb82d0fc0a9873052
|
|
| MD5 |
975b2795f877e998002c03141b39b00d
|
|
| BLAKE2b-256 |
96fb66e5fd96e89520ec89f4d6fa08fb7482bcc55ebaf914f4fa4ac948668b90
|