Exemple #1
0
def export_world(world_uid):
    response.set_header('Content-type', 'application/json')
    response.set_header('Content-Disposition', 'attachment; filename="world.json"')
    return runtime.export_world(world_uid)
Exemple #2
0
def export_world_rpc(world_uid):
    return True, runtime.export_world(world_uid)
Exemple #3
0
def export_world_rpc(world_uid):
    """ Return a complete json dump of the world's state"""
    return True, runtime.export_world(world_uid)