Exemplo n.º 1
0
def patch_types():
    return JSON.patch_types(request.json)
Exemplo n.º 2
0
def save_backup():
    return JSON.save_backup(request.json)
Exemplo n.º 3
0
def reset_pickle():
    return JSON.reset_from_backup(request.json)
Exemplo n.º 4
0
def new_card():
    return JSON.patch_new_card(request.json)
Exemplo n.º 5
0
def delete_card():
    return JSON.delete_card(request.json)
Exemplo n.º 6
0
def delete_entry():
    return JSON.delete_entry(request.json)
Exemplo n.º 7
0
def new_entry():
    return JSON.patch_new_entry(request.json)
Exemplo n.º 8
0
def update_cell():
    return JSON.patch_data(request.json)
Exemplo n.º 9
0
def initialize_table():
    file = request.files['file']
    return JSON.initialize_table(file)
Exemplo n.º 10
0
def data():
    return JSON.fetch_data()