A python client for etcd
Project description
python-etcd documentation
A python client for Etcd https://github.com/coreos/etcd
Official documentation: http://python-etcd.readthedocs.org/
Installation
Pre-requirements
Install etcd
From source
$ python setup.py install
Usage
Create a client object
import etcd
client = etcd.Client() # this will create a client against etcd server running on localhost on port 4001
client = etcd.Client(port=4002)
client = etcd.Client(host='127.0.0.1', port=4003)
client = etcd.Client(host='127.0.0.1', port=4003, allow_redirect=False) # wont let you run sensitive commands on non-leader machines, default is true
Set a key
client.set('/nodes/n1', 1)
# with ttl
client.set('/nodes/n2', 2, ttl=4) # sets the ttl to 4 seconds
Get a key
client.get('/nodes/n2').value
Delete a key
client.delete('/nodes/n1')
Test and set
client.test_and_set('/nodes/n2', 2, 4) # will set /nodes/n2 's value to 2 only if its previous value was 4
Watch a key
client.watch('/nodes/n1') # will wait till the key is changed, and return once its changed
List sub keys
# List nodes in the cluster
client.get('/nodes')
# List keys under /subtree
client.get('/subtree')
Get machines in the cluster
client.machines
Get leader of the cluster
client.leader
Development setup
To create a buildout,
$ python bootstrap.py
$ bin/buildout
to test you should have etcd available in your system path:
$ bin/test
to generate documentation,
$ cd docs
$ make
Release HOWTO
To make a release
Update release date/version in NEWS.txt and setup.py
Run ‘python setup.py sdist’
Test the generated source distribution in dist/
Upload to PyPI: ‘python setup.py sdist register upload’
News
0.2.1
Release data: 30-Nov-2013
SSL support
Added support for subdirectories in results.
Improve test
Added support for reconnections, allowing death node tolerance.
0.2.0
Release data: 30-Sep-2013
Allow fetching of multiple keys (sub-nodes)
0.1
Release date: 18-Sep-2013
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-etcd-0.2.1.tar.gz.
File metadata
- Download URL: python-etcd-0.2.1.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27e6477883ae5952caf40a9c9fa50a18d8418b9f66cc5161d126692c34f41ea7
|
|
| MD5 |
44585e8d71b6c0b822c9ef43a67ddc73
|
|
| BLAKE2b-256 |
4ef1921476a520dfae32efe7da4564d6f9701192c64e37c0ab94ab700e884575
|