File size: 268 Bytes
50aeac3 7e0e71d 50aeac3 7e0e71d 50aeac3 7e0e71d |
1 2 3 4 5 6 7 8 9 10 |
import os
from motor.motor_asyncio import AsyncIOMotorClient
MONGO_URI = os.environ.get("MONGODB_URI")
client = AsyncIOMotorClient(MONGO_URI)
db = client.get_default_database()
patients_collection = db["patients"]
results_collection = db["patient_analysis_results"]
|