Skip to content
Snippets Groups Projects
Commit cbb13b6b authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

List accessors in status view

parent bad3f63b
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ def show_session_status():
'status': 'running',
'models': session.describe_loaded_models(),
'paths': session.get_paths(),
'accessors': session.list_accessors(),
}
......
......@@ -133,6 +133,7 @@ class _Session(object):
List information about all accessors in JSON-readable format
"""
if len(self.accessors):
# TODO: also return accessor ID
return pd.DataFrame(self.accessors).drop('object').to_dict()
else:
return {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment