collections_tables_get_table_data

Get the contents of a data table

Functions

async pydelfini.delfini_core.api.tables.collections_tables_get_table_data.asyncio(collection_id, version_id, table_name, *, client, page_size=10000)[source]

Get the contents of a data table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[TableData]

Return type:

TableData

async pydelfini.delfini_core.api.tables.collections_tables_get_table_data.asyncio_detailed(collection_id, version_id, table_name, *, client, page_size=10000)[source]

Get the contents of a data table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[ServerError, TableData]]

Return type:

Response[ServerError | TableData]

pydelfini.delfini_core.api.tables.collections_tables_get_table_data.sync(collection_id, version_id, table_name, *, client, page_size=10000)[source]

Get the contents of a data table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[TableData]

Return type:

TableData

pydelfini.delfini_core.api.tables.collections_tables_get_table_data.sync_detailed(collection_id, version_id, table_name, *, client, page_size=10000)[source]

Get the contents of a data table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[ServerError, TableData]]

Return type:

Response[ServerError | TableData]