コード例 #1
0
ファイル: admin.py プロジェクト: diunko/cocaine-flow
def read_balances():
    try:
        balances = storage.read(storage.key('system', "list:balances"))
    except:
        balances = {}

    return balances
コード例 #2
0
ファイル: jsonapi.py プロジェクト: diunko/cocaine-flow
def get_runlists():
    try:
        return json.dumps(storage.read(storage.key("system", "list:runlists")))
    except RuntimeError:
        return json.dumps([])
コード例 #3
0
ファイル: views.py プロジェクト: pombredanne/cocaine-flow
def exists(prefix, postfix):
    try:
        return str(storage.read(storage.key(prefix, postfix)))
    except:
        return 'Not exists', 404
コード例 #4
0
ファイル: common.py プロジェクト: diunko/cocaine-flow
def dict_remove(prefix, postfix, value):
    dict_key = storage.key(prefix, postfix)
    runlist_dict = storage.read(dict_key)
    runlist_dict.pop(value, None)
    storage.write(dict_key, runlist_dict)