blob: 9558c87387132f51d9754fa069cb647f4d49a128 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
from wb import get_config
from js import JSON
def main():
kv = get_config()
print JSON().encode(kv)
# if we are run directly, and not loaded as a module
if __name__ == "__main__":
main()
|