Small config reading fix

This commit is contained in:
Profitroll 2023-08-14 15:22:00 +02:00
parent 64e097737a
commit ab39c111eb
Signed by: profitroll
GPG Key ID: FA35CAB49DACD3B2
2 changed files with 2 additions and 11 deletions

View File

@ -1,11 +1,9 @@
"""Module that provides all database columns"""
from async_pymongo import AsyncClient
from ujson import loads
from libbot import sync
with open("config.json", "r", encoding="utf-8") as f:
db_config = loads(f.read())["database"]
f.close()
db_config = sync.config_get("database")
if db_config["user"] is not None and db_config["password"] is not None:
con_string = "mongodb://{0}:{1}@{2}:{3}/{4}".format(
@ -23,12 +21,6 @@ else:
db_client = AsyncClient(con_string)
db = db_client.get_database(name=db_config["name"])
# collections = db.list_collection_names()
# for collection in ["users", "groups", "schedule"]:
# if collection not in collections:
# db.create_collection(collection)
col_users = db.get_collection("users")
col_groups = db.get_collection("groups")
col_schedule = db.get_collection("schedule")

View File

@ -1,4 +1,3 @@
black~=23.7.0
Pillow~=10.0.0
pykeyboard==0.1.5
tgcrypto==1.2.5