pymaid.get_node_details

pymaid.get_node_details(x, chunk_size=10000, convert_ts=True, remote_instance=None)[source]

Retrieve detailed info for nodes and/or connectors.

Parameters:
  • x (list | CatmaidNeuron | CatmaidNeuronList) – List of node ids: can be node or connector IDs! If CatmaidNeuron/List will get both, nodes and connectors!

  • chunk_size (int, optional) – Querying large number of nodes will result in server errors. We will thus query them in amenable bouts.

  • convert_ts (bool, optional) – If True, will convert timestamps from strings to datetime objects.

  • remote_instance (CatmaidInstance, optional) – If not passed directly, will try using global.

Returns:

DataFrame in which each row represents a node:

   node_id  creation_time  creator  edition_time ...
0
1
   editor  reviewers  review_times
0
1

Return type:

pandas.DataFrame