Edit page in Livemark
(2023-06-06 13:09)

Time Field

Overview

A time without a date. Read more in Table Schema Standard.

Example

from frictionless import Schema, extract, fields

data = [['name'], ['15:00:00']]
rows = extract(data, schema=Schema(fields=[fields.TimeField(name='name')]))
print(rows)
{'memory': [{'name': datetime.time(15, 0)}]}

Reference

fields.TimeField (class)

fields.TimeField (class)

Field representation

Signature

(*, name: str, title: Optional[str] = None, description: Optional[str] = None, format: str = default, missing_values: List[str] = NOTHING, constraints: dict = NOTHING, rdf_type: Optional[str] = None, example: Optional[str] = None, schema: Optional[Schema] = None) -> None

Parameters

  • name (str)
  • title (Optional[str])
  • description (Optional[str])
  • format (str)
  • missing_values (List[str])
  • constraints (dict)
  • rdf_type (Optional[str])
  • example (Optional[str])
  • schema (Optional[Schema])

fields.timeField.name (property)

Signature

str

fields.timeField.type (property)

Signature

ClassVar[str]

fields.timeField.title (property)

Signature

Optional[str]

fields.timeField.description (property)

Signature

Optional[str]

fields.timeField.format (property)

Signature

str

fields.timeField.missing_values (property)

Signature

List[str]

fields.timeField.constraints (property)

Signature

dict

fields.timeField.rdf_type (property)

Signature

Optional[str]

fields.timeField.example (property)

Signature

Optional[str]

fields.timeField.schema (property)

Signature

Optional[Schema]

fields.timeField.builtin (property)

Signature

ClassVar[bool]

fields.timeField.supported_constraints (property)

Signature

ClassVar[List[str]]