Sequential Metadata API
Last updated
Last updated
This guide will walk you through creating the metadata using the Python API.
Use the SingleTableMetadata
object to create your metadata, modify and inspect it.
See for more details.
You can optionally include additional metadata related to your sequences. These methods are available on the SingleTableMetadata
object.
Use this function to set the sequence key of your table. Any existing sequence keys will be removed.
Parameters
(required) column_name
: The column name of the sequence key. The column name must already be defined in the metadata and it must be an ID or another PII sdtype.
Output (None)
Use this function to set the sequence index of your table. Any existing sequence indices will be removed.
Parameters
(required) column_name
: The column name of the sequence index. The column name must already be defined in the metadata. It must be either a numerical or datetime column.
Output (None)