File size: 185 Bytes
1b2006d
 
 
 
 
 
 
1
2
3
4
5
6
7
import os
from motor.motor_asyncio import AsyncIOMotorClient
from config import MONGO_URL

client = AsyncIOMotorClient(MONGO_URL)
db = client["Akeno"]
users_collection = db["web_langs"]