tests/config.py
author Radek Brich <radek.brich@devl.cz>
Mon, 26 May 2014 18:18:21 +0200
changeset 103 24e94a3da209
parent 49 08e4dfe1b0cb
permissions -rw-r--r--
Update bigtables tool: Sort by size with indexes, not just data.

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