PickEngine / app /db.py
shubhendu-ghosh's picture
Upload 2 files
11042a4 verified
raw
history blame contribute delete
318 Bytes
from pymongo import MongoClient
import os
MONGO_URI = os.getenv("MONGO_URI")
client = MongoClient(MONGO_URI)
db = client["electronics_db"]
# collections
ac_collection = db["ac"]
tv_collection = db["tv"]
fridge_collection = db["fridge"]
wash_collection = db["wash"]
appliance_collection = db["appliances"]