Skip to content

pixano.app.routers.annotations

create_annotation(dataset_id, table, id, annotation, settings) async

Add an annotation in a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
id str

ID of the annotation.

required
annotation AnnotationModel

Annotation to add.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required

Returns:

Type Description
AnnotationModel

The annotation added.

Source code in pixano/app/routers/annotations.py
@router.post("/{dataset_id}/{table}/{id}", response_model=AnnotationModel)
async def create_annotation(
    dataset_id: str,
    table: str,
    id: str,
    annotation: AnnotationModel,
    settings: Annotated[Settings, Depends(get_settings)],
) -> AnnotationModel:
    """Add an annotation in a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        id: ID of the annotation.
        annotation: Annotation to add.
        settings: App settings.

    Returns:
        The annotation added.
    """
    return await create_row_handler(dataset_id, SchemaGroup.ANNOTATION, table, id, annotation, settings)

create_annotations(dataset_id, table, annotations, settings) async

Add annotations in a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
annotations list[AnnotationModel]

Annotations to add.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required

Returns:

Type Description
list[AnnotationModel]

List of annotations added.

Source code in pixano/app/routers/annotations.py
@router.post("/{dataset_id}/{table}/", response_model=list[AnnotationModel])
async def create_annotations(
    dataset_id: str,
    table: str,
    annotations: list[AnnotationModel],
    settings: Annotated[Settings, Depends(get_settings)],
) -> list[AnnotationModel]:
    """Add annotations in a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        annotations: Annotations to add.
        settings: App settings.

    Returns:
        List of annotations added.
    """
    return await create_rows_handler(dataset_id, SchemaGroup.ANNOTATION, table, annotations, settings)

delete_annotation(dataset_id, table, id, settings) async

Delete an annotation from a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
id str

ID of the annotation to delete.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required
Source code in pixano/app/routers/annotations.py
@router.delete("/{dataset_id}/{table}/{id}")
async def delete_annotation(
    dataset_id: str, table: str, id: str, settings: Annotated[Settings, Depends(get_settings)]
) -> None:
    """Delete an annotation from a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        id: ID of the annotation to delete.
        settings: App settings.
    """
    return await delete_row_handler(dataset_id, SchemaGroup.ANNOTATION, table, id, settings)

delete_annotations(dataset_id, table, ids, settings) async

Delete annotations from a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
ids Annotated[list[str], Query()]

IDs of the annotations to delete.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required
Source code in pixano/app/routers/annotations.py
@router.delete("/{dataset_id}/{table}/")
async def delete_annotations(
    dataset_id: str,
    table: str,
    ids: Annotated[list[str], Query()],
    settings: Annotated[Settings, Depends(get_settings)],
) -> None:
    """Delete annotations from a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        ids: IDs of the annotations to delete.
        settings: App settings.
    """
    return await delete_rows_handler(dataset_id, SchemaGroup.ANNOTATION, table, ids, settings)

get_annotation(dataset_id, table, id, settings) async

Get an annotation from a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
id str

ID of the annotation.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required

Returns:

Type Description
AnnotationModel

The annotation.

Source code in pixano/app/routers/annotations.py
@router.get("/{dataset_id}/{table}/{id}", response_model=AnnotationModel)
async def get_annotation(
    dataset_id: str, table: str, id: str, settings: Annotated[Settings, Depends(get_settings)]
) -> AnnotationModel:
    """Get an annotation from a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        id: ID of the annotation.
        settings: App settings.

    Returns:
        The annotation.
    """
    return await get_row_handler(dataset_id, SchemaGroup.ANNOTATION, table, id, settings)

get_annotations(dataset_id, table, settings, ids=Query(None), limit=None, skip=0, where=None, item_ids=Query(None)) async

Get annotations from a table of a dataset.

They can be filtered by IDs, item IDs, a where clause or paginated.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required
ids list[str] | None

IDs of the annotations.

Query(None)
limit int | None

Limit number of annotations.

None
skip int

Skip number of annotations.

0
where str | None

Where clause.

None
item_ids list[str] | None

Item IDs.

Query(None)

Returns:

Type Description
list[AnnotationModel]

List of annotations.

Source code in pixano/app/routers/annotations.py
@router.get("/{dataset_id}/{table}/", response_model=list[AnnotationModel])
async def get_annotations(
    dataset_id: str,
    table: str,
    settings: Annotated[Settings, Depends(get_settings)],
    ids: list[str] | None = Query(None),
    limit: int | None = None,
    skip: int = 0,
    where: str | None = None,
    item_ids: list[str] | None = Query(None),
) -> list[AnnotationModel]:
    """Get annotations from a table of a dataset.

    They can be filtered by IDs, item IDs, a where clause or paginated.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        settings: App settings.
        ids: IDs of the annotations.
        limit: Limit number of annotations.
        skip: Skip number of annotations.
        where: Where clause.
        item_ids: Item IDs.

    Returns:
        List of annotations.
    """
    return await get_rows_handler(
        dataset_id=dataset_id,
        group=SchemaGroup.ANNOTATION,
        table=table,
        settings=settings,
        where=where,
        ids=ids,
        item_ids=item_ids,
        limit=limit,
        skip=skip,
    )

update_annotation(dataset_id, table, id, annotation, settings) async

Update an annotation in a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
id str

ID of the annotation.

required
annotation AnnotationModel

Annotation to update.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required

Returns:

Type Description
AnnotationModel

The annotation updated.

Source code in pixano/app/routers/annotations.py
@router.put("/{dataset_id}/{table}/{id}", response_model=AnnotationModel)
async def update_annotation(
    dataset_id: str,
    table: str,
    id: str,
    annotation: AnnotationModel,
    settings: Annotated[Settings, Depends(get_settings)],
) -> AnnotationModel:
    """Update an annotation in a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        id: ID of the annotation.
        annotation: Annotation to update.
        settings: App settings.

    Returns:
        The annotation updated.
    """
    return await update_row_handler(dataset_id, SchemaGroup.ANNOTATION, table, id, annotation, settings)

update_annotations(dataset_id, table, annotations, settings) async

Update annotations in a table of a dataset.

Parameters:

Name Type Description Default
dataset_id str

Dataset ID containing the table.

required
table str

Table name.

required
annotations list[AnnotationModel]

Annotations to update.

required
settings Annotated[Settings, Depends(get_settings)]

App settings.

required

Returns:

Type Description
list[AnnotationModel]

List of annotations updated.

Source code in pixano/app/routers/annotations.py
@router.put("/{dataset_id}/{table}/", response_model=list[AnnotationModel])
async def update_annotations(
    dataset_id: str,
    table: str,
    annotations: list[AnnotationModel],
    settings: Annotated[Settings, Depends(get_settings)],
) -> list[AnnotationModel]:
    """Update annotations in a table of a dataset.

    Args:
        dataset_id: Dataset ID containing the table.
        table: Table name.
        annotations: Annotations to update.
        settings: App settings.

    Returns:
        List of annotations updated.
    """
    return await update_rows_handler(dataset_id, SchemaGroup.ANNOTATION, table, annotations, settings)