Welcome to python-kyototycoon-binary’s documentation!¶
A lightweight Python client for accessing Kyoto Tycoon via its binary protocol.
Installation¶
$ pip install Cython
$ pip install python-kyototycoon-binary
Basic Usage¶
>>> from bkyototycoon import KyotoTycoonConnection
>>> client = KyotoTycoonConnection()
>>> client.set_bulk({'key1': 'value1', 'key2': 'value2'})
2
>>> client.get_bulk(['key1', 'key2', 'key3'])
{'key2': 'value2', 'key1': 'value1'}
>>> client.remove_bulk(['key1', 'key2'])
1
>>> client.get_bulk(['key1', 'key2', 'key3'])
{'key1': 'value1'}
Contents: