Skip to content

Commit

Permalink
perf(datasets): lazily load datasets in init files (polars)
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman committed Jul 25, 2023
1 parent ced6be9 commit eed604d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions kedro-datasets/kedro_datasets/polars/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
"""``AbstractDataSet`` implementations that produce pandas DataFrames."""
from typing import Any

__all__ = ["CSVDataSet"]
import lazy_loader as lazy

from contextlib import suppress
# https://github.com/pylint-dev/pylint/issues/4300#issuecomment-1043601901
CSVDataSet: Any

with suppress(ImportError):
from .csv_dataset import CSVDataSet
__getattr__, __dir__, __all__ = lazy.attach(
__name__, submod_attrs={"csv_dataset": ["CSVDataSet"]}
)

0 comments on commit eed604d

Please sign in to comment.