tests/config.py
author Radek Brich <radek.brich@devl.cz>
Thu, 31 May 2012 11:28:41 +0200
changeset 38 d3593869d624
parent 37 5b0eb4b11940
child 49 08e4dfe1b0cb
permissions -rw-r--r--
Update bigtables tool: scan all schemas.

import sys

sys.path.insert(0, '..')


class Config(dict):
    def __init__(self, fname):
        with open(fname) as f:
            data = f.read()
        exec(data, dict(), self)