Spaces:
Runtime error
Runtime error
File size: 233 Bytes
a488104 | 1 2 3 4 5 6 7 8 9 10 | from motor.motor_asyncio import AsyncIOMotorClient
import gridfs
MONGO_URL = "mongodb://localhost:27017"
DB_NAME = "contracts_db"
client = AsyncIOMotorClient(MONGO_URL)
db = client[DB_NAME]
fs = gridfs.GridFS(db.delegate)
|