Skip to content

Search local

Source code in src/featureform/search_local.py
def search_local(phrase):
    db = SQLiteMetadata()
    results = db.search(phrase=phrase)

    if len(results) == 0:
        print(f"Search phrase {phrase} returned no results.")
        return []
    else:
        return results