CSV Loader
This commit is contained in:
27
lib/csv_loader/__init__.py
Normal file
27
lib/csv_loader/__init__.py
Normal file
@ -0,0 +1,27 @@
|
||||
from .csv_loader import (
|
||||
BoolValuePair,
|
||||
CSVFieldDuplicate,
|
||||
CSVLoader,
|
||||
CSVLoaderResult,
|
||||
CSVRow,
|
||||
CSVRowDefaultConfig,
|
||||
CSVRows,
|
||||
)
|
||||
from .mapping_strategies import (
|
||||
HeaderRemapField,
|
||||
MappingStrategyByHeader,
|
||||
MappingStrategyByModelFieldOrder,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"BoolValuePair",
|
||||
"CSVLoader",
|
||||
"CSVLoaderResult",
|
||||
"CSVRow",
|
||||
"CSVRows",
|
||||
"CSVFieldDuplicate",
|
||||
"CSVRowDefaultConfig",
|
||||
"MappingStrategyByHeader",
|
||||
"MappingStrategyByModelFieldOrder",
|
||||
"HeaderRemapField",
|
||||
]
|
||||
Reference in New Issue
Block a user