Skip to content
This repository was archived by the owner on Aug 21, 2020. It is now read-only.

Commit aa939c4

Browse files
gmelikovdims
authored andcommitted
Add basic usage example in usage.rst
1 parent 7f6c949 commit aa939c4

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

doc/source/usage.rst

+35-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22
Usage
33
========
44

5-
To use etcd3-gateway in a project::
5+
You can find examples in ``etcd3gw/examples`` and look at ``etcd3gw/client.py``.
66

7-
import etcd3gw
7+
Basic usage example::
8+
9+
from etcd3gw.client import Etcd3Client
10+
11+
client = Etcd3Client(host='localhost', port=2379)
12+
13+
# Put key
14+
client.put(key='foo', value='bar')
15+
16+
# Get key
17+
client.get(key='foo')
18+
19+
# Get all keys
20+
client.get_all()
21+
22+
23+
# Create lease and use it
24+
lease = client.lease(ttl=100)
25+
26+
client.put(key='foo', value='bar', lease=lease)
27+
28+
# Get lease keys
29+
lease.keys()
30+
31+
# Refresh lease
32+
lease.refresh()
33+
34+
35+
# Use watch
36+
watcher, watch_cancel = client.watch(key='KEY')
37+
38+
for event in watcher: # blocks until event comes, cancel via watch_cancel()
39+
print(event)
40+
# modify event: {u'kv': {u'mod_revision': u'8', u'version': u'3', u'value': 'NEW_VAL', u'create_revision': u'2', u'key': 'KEY', u'lease': u'7587847878767953426'}}

0 commit comments

Comments
 (0)