Elektra
0.8.19
|
When programming in python it is possible to access the kdb database, changing values of existing keys, adding and deleting keys and a few other things.
In order to being able to use kdb, obviously, you at first need to import kdb
. You need access to an python-object of kdb. This is accomplished by calling kdb.KDB()
and saving this to a variable because later on this object will be needed for various operations. The easiest way to do this would be: ``` import kdb with kdb.KDB() as k: print 'Hello world! I have a kdb-instance! :D'
```
A keyset is basically a list of the keys that lie within the specified range of the databse. When creating an empty keyset this range is obviously zero. It is possible to load the whole database into a keyset but in a lot of cases this is not needed and you can specify which keys exactly you need (which I mean with specified range). At first it is necessary to create a new keyset. When simply calling kdb.KeySet()
the keyset is of size 0. There is no restriction to the keyset's size. It is possible to specify a certain (maximum) size for a keyset. To load keys into to keyset from the database you simply call the method get
provided by the kdb-object.
``` import kdb with kdb.KDB() as k:
ks = kdb.KeySet() print len(ks) # should be 0
k.get(ks, '/path/to/keys') ```
It is also possible to iterate as expected over a keyset and use len, reversed and copying. The elements of a keyset can be accessed by indexes and a keyset can be sliced. Another way of accessing a key is by the key-name (`keyset_name['/path/to/keys/key_name']`). If the key-name does not exist within the keyset, a KeyError exception is thrown.
An example that shows how to load an existing keyset and then access every key and value of the loaded keyset:
``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() #loading an existing keyset k.get(ks, '/path/to/keys')
for i in ks:
print 'key: '+ str(i) + 'value: ' + str(ks[i])
```
Here an example of how you can easily check if a key exists:
``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys') try: print 'The value to the key /user/sw/pk/key_name is ' + str(ks['/user/sw/pk/key_name']) + '!' except KeyError: print 'The key does not exist!' ```
Ways of copying a keyset:
``` import kdb import copy with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys')
ks_deepcopy = copy.deepcopy(ks)
ks_shallowcopy = copy.copy(ks)
```
Slicing works just like for normal lists in python. But be careful: Afterwards the result will be a list - not a keyset.
``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys')
ks_copy_by_slicing = ks[:]
a = ks[start:end]
b = ks[start:]
c = ks[:end]
```
If you have changed anything in the keyset and want those changes to be saved to the database, you need to call set
which is just like get
provided by the kdb-object.
An example of everything up until now could look like this: ``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys')
k.set(ks, '/path/to/keys')
```
If you have a key a very simple way to get it's name and value:
``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys') for i in ks: print 'key-name: ' + i.name print 'key-value: ' + i.value print 'key-value: ' + ks.lookup(i).string ```
It is possible to create new keys:
``` import kdb with kdb.KDB() as k:
new_key = kdb.Key('/user/sw/pk/key_name', kdb.KEY_VALUE, 'key_value') ```
Keys can be added to a keyset using append
. If the key already exists, the value will be updated. Calling `keyset_name['/path/to/key'] = 'new_value` does not work for updating keys already in a keyset.
``` import kdb with kdb.KDB() as k: ks = kdb.KeySet() k.get(ks, '/path/to/keys') new_key = kdb.Key('/user/sw/pk/key_name', kdb.KEY_VALUE, 'key_value')
ks.append(new_key) newer_key = kdb.Key('/user/sw/pk/key_name', kdb.KEY_VALUE, 'other_key_value')
ks.append(newer_key) ```