python-consul
python-consul copied to clipboard
Python client for Consul (http://www.consul.io/)
Hi. I wonder if there is a way to add support for recently introduced [consul snapshot](https://www.consul.io/api/snapshot.html) api?
hi It will be perfect if results returned by kv.get can be sorted by `ModifyIndex` Currently i have such code ```python index, responce = self.consul_api.kv.get(path, recurse=True) if not responce: return...
Please include the tests when distributing release via PyPI. Packagers like to have those tests to test whether their package works correctly. Thanks!
We are using this consul library for pulling our ansible/bitbucket-backed configuration file to the consul KV store. One issue that we have been experiencing is, certain type(e.g. String, Obj) of...
Any thoughts about refactoring the classes in base.py it into separate modules? Is this something you'd like to see @cablehead?
The consul api for session creation supports units for its duration values which it passes these through to https://golang.org/pkg/time/#ParseDuration to parse. (see [here](https://github.com/hashicorp/consul/blob/ea62d297565a1fec78bfa66e43beeecb504d13d5/consul/session_ttl.go#L53)). Currently however these are being restricted by...
I burned a few hours on this, so hopefully this will save the next person a future headache. I used python-consul to register a new service, with a corresponding health...
Hi, I’m using python-consul often in a pure asyncio environment (and JFTR also added support to [prometheus_async](https://github.com/hynek/prometheus_async/blob/master/src/prometheus_async/aio/sd.py)). At that I find it bothersome to get a heavy dependency like requests...
I'd like to be able to set a timeout on the requests made by requests. http://docs.python-requests.org/en/latest/user/quickstart/#timeouts I could work on a pull request if one of the following options looks...