Small config reading fix
This commit is contained in:
parent
64e097737a
commit
ab39c111eb
@ -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")
|
||||
|
@ -1,4 +1,3 @@
|
||||
black~=23.7.0
|
||||
Pillow~=10.0.0
|
||||
pykeyboard==0.1.5
|
||||
tgcrypto==1.2.5
|
||||
|
Reference in New Issue
Block a user