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"] |
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"] |