python-etcd icon indicating copy to clipboard operation
python-etcd copied to clipboard

A python client for etcd

Results 55 python-etcd issues
Sort by recently updated
recently updated
newest added

now, the python-etc can contact one node, but not a cluster, how to support it ? now: etcd = etcd3.client(host='127.0.0.1', port=2379) want: etcd = etcd3.client('127.0.0.1:2379;127.0.0.2:2379')

I'm having an issue with a client connection when using wait=True. I have the following call output = client.read("foo/{0}".format(bar), wait=True, timeout=0, recursive=True) I have machines checking into foo/bar/fqdn every 30...

I use ssl connect to etcd server, the error is etcd.EtcdConnectionFailed: Connection to etcd failed due to SSLError(SSLError(1, u'[SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590)'),) my etcd server version is...

I'm running a recent 3.* image of etcd in a container. I then try to connect to this instance, like so: from etcd import client c = client.Client(host="127.0.0.1", port=2379) This...

With `aioetcd==0.4.5.0` I can't seem to get working Locks. This is my first version of usage so I'm not sure I can't speak to if this ever worked. If I...

I am using etcd in https://github.com/graysonchao/credis as a state store for a distributed system, and I'd like to use python-etcd + Flask to make a small web API for monitoring...

Under python 2.7 writing unicode strings as values to etcd fails as follows: ``` import etcd client = etcd.Client(host='127.0.0.1', port=2379) client.write('/test/foo', u'õäö') ``` **UnicodeEncodeError: 'ascii' codec can't encode characters in...

It would be useful to support adding/removing members from the etcd cluster, as per https://coreos.com/etcd/docs/latest/v2/members_api.html#delete-a-member

enhancement

Hi all! I thought I might spend 10 minutes to write down some ideas on how to evolve the library now. # Deprecation of old methods We have quite a...

enhancement

Need a function or similar to get the lock sequence number when acquiring a lock. If you want to do something like a shell script that utilizes the lock, you...