-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy path__init__.py
More file actions
61 lines (57 loc) · 1.74 KB
/
__init__.py
File metadata and controls
61 lines (57 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from importlib.metadata import PackageNotFoundError
from importlib.metadata import version as _version
from feast.infra.offline_stores.bigquery_source import BigQuerySource
from feast.infra.offline_stores.contrib.athena_offline_store.athena_source import (
AthenaSource,
)
from feast.infra.offline_stores.file_source import FileSource
from feast.infra.offline_stores.redshift_source import RedshiftSource
from feast.infra.offline_stores.snowflake_source import SnowflakeSource
from .aggregation import Aggregation
from .batch_feature_view import BatchFeatureView
from .data_source import KafkaSource, KinesisSource, PushSource, RequestSource
from .dataframe import DataFrameEngine, FeastDataFrame
from .entity import Entity
from .feature import Feature
from .feature_service import FeatureService
from .feature_store import FeatureStore
from .feature_view import FeatureView
from .field import Field
from .on_demand_feature_view import OnDemandFeatureView
from .project import Project
from .repo_config import RepoConfig
from .stream_feature_view import StreamFeatureView
from .value_type import ValueType
from .vector_store import FeastVectorStore
try:
__version__ = _version("feast")
except PackageNotFoundError:
# package is not installed
pass
__all__ = [
"Aggregation",
"BatchFeatureView",
"DataFrameEngine",
"Entity",
"KafkaSource",
"KinesisSource",
"FeastDataFrame",
"Feature",
"Field",
"FeatureService",
"FeatureStore",
"FeatureView",
"OnDemandFeatureView",
"RepoConfig",
"StreamFeatureView",
"ValueType",
"BigQuerySource",
"FileSource",
"RedshiftSource",
"SnowflakeSource",
"PushSource",
"RequestSource",
"AthenaSource",
"Project",
"FeastVectorStore",
]