Spaces:
Runtime error
Runtime error
| from pymongo import MongoClient | |
| import os | |
| from dotenv import load_dotenv | |
| load_dotenv() | |
| MONGO_URI = os.getenv("MONGO_URI") | |
| client = MongoClient(MONGO_URI) | |
| db = client["delphi"] | |
| users_collection = db["users"] | |
| posts_collection = db["posts"] | |