Search local Source code in src/featureform/search_local.py 6 7 8 9 10 11 12 13 14def 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