tlc.core.objects.tables.from_url.table_from_ndjson

A table populated from a NDJSON file at a given URL.

Module Contents

Classes

Class

Description

TableFromNdjson

A table populated from a NDJSON file at a given URL.

API

class TableFromNdjson(
*,
url: Url | None = None,
created: str | None = None,
description: str | None = None,
row_cache_url: Url | None = None,
row_cache_populated: bool | None = None,
override_table_rows_schema: Any = None,
init_parameters: Any = None,
input_tables: list[Url] | None = None,
input_url: Url | str | None = None,
)

Bases: tlc.core.objects.tables.in_memory_columns_table._InMemoryColumnsTable

A table populated from a NDJSON file at a given URL.

Initialize a TableFromNdjson object.

Parameters:
  • url – The URL of the table.

  • created – The creation date of the table.

  • description – The description of the table.

  • row_cache_url – The URL of the row cache.

  • row_cache_populated – Whether the row cache is populated.

  • override_table_rows_schema – The table rows schema to override.

  • init_parameters – The parameters used to initialize the table.

  • input_tables – A list of Table Urls that should be used as input tables.

  • input_url – The URL of the input data.