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

Python client for Consul (http://www.consul.io/)

Results 90 python-consul issues
Sort by recently updated
recently updated
newest added

https://python-consul.readthedocs.io/en/latest/#consul.base.Consul.Agent.Service.register the doc says have a meta parameter, and source code have a meta parameter, but the installed consul in lib/consul does not have a meta parameter does the package...

Hi, It looks like there's no direct support for these endpoints: https://www.consul.io/api-docs/operator In particular, the `raft` and `autopilot` endpoints would be valuable.

There has been no pull requests merged in over six months, is this repository still maintained?

When I use the python-consul package and connect to the consul service with ACL added, I can register the service through the token, but I cannot get the registered service...

I'm getting the following error when using the txn method of the client. `ClientError: 409 {"Results":null,"Errors":[{"OpIndex":0,"What":"Permission denied"}]}` even though the client was initialized with the correct token. Using the consul...

Currently the consul.Query class doesn't support specifying Service metadata as documented at https://www.consul.io/api/query.html#servicemeta. I believe this should just be a matter of plumbing it through https://github.com/cablehead/python-consul/blob/master/consul/base.py#L2155

Hello, I've probably misread the documentation, but it appears the `host=` parameter to the `consul.Consul()` class is very misleading. In my current environment, I have 4 separate Consul clusters I...

can we subscribe for kv changes, so that if there are any change in kv store key's value , client will get notified about changes . Is this feature already...