コード例 #1
0
ファイル: micropsi_app.py プロジェクト: stoffy/micropsi2
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)
コード例 #2
0
ファイル: micropsi_app.py プロジェクト: stoffy/micropsi2
def export_world_rpc(world_uid):
    return True, runtime.export_world(world_uid)
コード例 #3
0
ファイル: core_rpc_api.py プロジェクト: Doik/micropsi2
def export_world_rpc(world_uid):
    """ Return a complete json dump of the world's state"""
    return True, runtime.export_world(world_uid)