Rome Explorer
Provide several explorer utilities for navigating capabilities loaded into Rome Bridge
Example:
>>> from rome_bridge import explorer
>>> explore = explorer.RomeExplorer()
>>> explore.print_feature_store_description("RomeFeast")
RomeFeast
RomeExplorer
Rome Explorer Class for finding and explaining Rome Feature Stores.
...
Attributes
str
list of installed feature_stores
Methods
describe_feature_store(feature_store_name="feature_store"): prints information about the feature_stores
Source code in rome_bridge/explorer.py
__init__(additional_feature_stores=[])
init for RomeExplorer
Parameters:
Name | Type | Description | Default |
---|---|---|---|
additional_feature_stores |
list[RomeBaseFeatureStore]
|
additonal loaded feature stores. Defaults to []. |
[]
|
Source code in rome_bridge/explorer.py
print_feature_store_description(feature_store_name)
Prints out a description of the Feature Store installed in Rome
Parameters:
Name | Type | Description | Default |
---|---|---|---|
feature_store_name |
str
|
The Name of the Feature Store Class as a String |
required |
Returns:
Type | Description |
---|---|
None
|
None |