Coverage for src / check_datapackage / __init__.py: 100%
8 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-30 13:13 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-30 13:13 +0000
1"""Check functions and constants for the Frictionless Data Package standard."""
3from rich import print as pretty_print
5from .check import (
6 DataPackageError,
7 check,
8 explain,
9)
10from .config import Config
11from .examples import (
12 example_field_properties,
13 example_package_properties,
14 example_resource_properties,
15)
16from .exclusion import Exclusion
17from .extensions import CustomCheck, Extensions, RequiredCheck
18from .issue import Issue
20__all__ = [
21 "Config",
22 "Exclusion",
23 "Issue",
24 "Extensions",
25 "CustomCheck",
26 "DataPackageError",
27 "RequiredCheck",
28 "example_package_properties",
29 "example_resource_properties",
30 "example_field_properties",
31 "check",
32 "explain",
33 "pretty_print",
34]