pymaid.get_skeleton_ids

pymaid.get_skeleton_ids(created_by: int | None = None, reviewed_by: int | None = None, from_date: date | None = None, to_date: date | None = None, nodecount_gt: int | None = None, remote_instance: CatmaidInstance | None = None) Set[int][source]

Get all skeleton IDs from the project matching given filters.

Parameters:
  • created_by (int, optional) – Created by user with this ID.

  • reviewed_by (int, optional) – Reviewed by user with this ID.

  • from_date (datetime.date, optional) – Has nodes created after this date.

  • to_date (datetime.date, optional) – Has nodes created before this date.

  • nodecount_gt (int, optional) – Has greater than this number of nodes. This will remove all other criteria.

  • remote_instance (pymaid.CatmaidInstance, optional) – Catmaid instance, by default None

Returns:

Skeleton IDs matching the given criteria.

Return type:

set[int]