This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from dotenv import load_dotenv | |
| load_dotenv() | |
| import os | |
| from supabase import create_client, Client | |
| url: str = os.environ.get("SUPABASE_URL") | |
| anon_key: str = os.environ.get("SUPABASE_ANON_KEY") #Make sure to use anon key in supabase | |
| supabase: Client = create_client(url, anon_key) |