Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin/test.py
blob: 4ccd715b51d22324284ced7a2c99043f84fc0fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'''
Created on Apr 8, 2011

@author: cgueret
'''

import os
import dbus
from sugar.datastore import datastore

if os.path.exists("/tmp/olpc-session-bus"):
    os.environ["DBUS_SESSION_BUS_ADDRESS"] = "unix:path=/tmp/olpc-session-bus"

if __name__ == "__main__":
    try:
        entry = datastore.create()
        entry.metadata['title'] = 'Terminal-test'
        print entry.metadata.get_dictionary().copy()
        datastore.write(entry)
        
        query = {}
        query['query'] = '*Terminal*'
        objects, count = datastore.find(query, limit=2)
        print objects, count
    except dbus.DBusException:
        print 'ERROR: Unable to connect to the datastore.\n'
    except Exception, e:
        print 'ERROR: %s' % (e)