aboutsummaryrefslogtreecommitdiff
path: root/python/simple.py
blob: 9b0f32ce24c911f497a4532acbc970bff753522b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python2.5
"""
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()