MCPcopy
hub / github.com/feast-dev/feast / get_property

Method get_property

sdk/python/feast/table_format.py:78–80  ·  view source on GitHub ↗

Get a table format property

(self, key: str, default: Optional[str] = None)

Source from the content-addressed store, hash-verified

76 pass
77
78 def get_property(self, key: str, default: Optional[str] = None) -> Optional[str]:
79 """Get a table format property"""
80 return self.properties.get(key, default)
81
82 def set_property(self, key: str, value: str) -> None:
83 """Set a table format property"""

Calls 1

getMethod · 0.80