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

Hi, I've been using this library for a couple of days now. So far it does exactly what it needs to be doing, thank you for that :) However I...

Dear Maintainer, I've ecountered an error using the GIT version of Etcd, you get versions such as "3.2.0-rc.1+git" Previous code led to this error: ``` "/usr/lib/python2.7/site-packages/etcd/auth.py", line 25, in legacy_api...

Hi, I've made a little change to better match the documentation available [here](https://coreos.com/etcd/docs/latest/v2/clustering.html#dns-discovery). It will now search for __etcd-client._tcp.domain_ instead of __etcd._tcp.domain_. I did not had time to implement searching...

First up, read_timeout (passed to **init**) isn't a timeout on the 'read' function but a urllib read timeout, and the docstrings are not clear on that, which is how I...

bug

Just out of curiosity, would you consider adding asyncio support to be within the scope of this project, or better tackled by a separate project like https://github.com/lisael/aioetcd? Watching keys would...

enhancement

As I see it, there's no way of "get or wait for" key, in the read call. you can do: ``` try: return client.read(key) except EtcdKeyNotFound as e: return client.read(key,...

bug

It'd be really nice if `python-etcd` would be available as Python wheel package (http://pythonwheels.com/) as well.

I passed our code through the codacy analyzer. If we don't count the tests, the situation is not dire; nonetheless some things could be improved: https://www.codacy.com/app/lavagetto/python-etcd/dashboard

enhancement

If you download the package from https://pypi.python.org/pypi/python-etcd there is no LICENSE.txt file. Thanks.

I found a bug when using library with etcd cluster and action `allow_reconnect = True`. When more than half of machines in cluster will go down the whole cluster will...

enhancement