summaryrefslogtreecommitdiff
path: root/heap/ebus-datastore/testfiles/datastore-test.py
diff options
context:
space:
mode:
authorEbus-at-dockstar <ebus@dockstar>2014-07-26 19:57:28 +0200
committerEbus-at-dockstar <ebus@dockstar>2014-07-26 19:57:28 +0200
commit773093acabfb84b88c37bb0342d6a8d4a6f8267a (patch)
treeeed343d56e36dfcc87bfc0e81af762cbed5938d7 /heap/ebus-datastore/testfiles/datastore-test.py
parentd624ed7b00203ec3beb3337a44ec1cf8075df453 (diff)
downloadebus-alt-773093acabfb84b88c37bb0342d6a8d4a6f8267a.tar.gz
ebus-alt-773093acabfb84b88c37bb0342d6a8d4a6f8267a.zip
move ebus-datastore to heap
Diffstat (limited to 'heap/ebus-datastore/testfiles/datastore-test.py')
-rw-r--r--heap/ebus-datastore/testfiles/datastore-test.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/heap/ebus-datastore/testfiles/datastore-test.py b/heap/ebus-datastore/testfiles/datastore-test.py
new file mode 100644
index 0000000..8fd6847
--- /dev/null
+++ b/heap/ebus-datastore/testfiles/datastore-test.py
@@ -0,0 +1,21 @@
+import time
+import struct
+from ebus.datastore import Datastore
+
+d = Datastore("datastore-data", readonly=True)
+
+"""
+config = d.get_config("heizkreisregler1.datumZeit.minuten")
+for (key, value) in d.get_range("heizkreisregler1.datumZeit.minuten",
+ 1321056000000,
+ 1325100000000):
+ print time.strftime("%F %H:%M:%S", time.gmtime(key/1000)), \
+ struct.unpack(config['format'].encode('latin-1'), value)
+"""
+
+data = d.get_range_n("heizkreisregler1.datumZeit.minuten",
+ 1321056000000, 1325100000000,number=100)
+print len(list(data))
+
+d.close()
+