aboutsummaryrefslogtreecommitdiff
path: root/python/simple.py
blob: a74cecdf63bf30b74ed97ea4fa8987f82764e213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
"""
A very simple example of the Flexiprovider.  Exports three properties
initially.
"""

from ContextKit.flexiprovider import *

Flexiprovider([INT('location.altitude'),
               STRING('my.name', 'flexi'),
               TRUTH('is.out.there')],
              'ctx.flexi.provider', 'session').interactive()