discord-rich-presence-plex/models/config.py

34 lines
568 B
Python
Raw Normal View History

2022-05-10 20:23:12 +00:00
from typing import TypedDict
class Logging(TypedDict):
debug: bool
writeToFile: bool
2022-05-10 20:23:12 +00:00
class Posters(TypedDict):
enabled: bool
imgurClientID: str
class Button(TypedDict):
label: str
url: str
2022-05-10 20:23:12 +00:00
class Display(TypedDict):
useRemainingTime: bool
posters: Posters
buttons: list[Button]
2022-05-10 20:23:12 +00:00
class Server(TypedDict, total = False):
2022-05-10 20:23:12 +00:00
name: str
listenForUser: str
2022-05-10 20:23:12 +00:00
blacklistedLibraries: list[str]
whitelistedLibraries: list[str]
class User(TypedDict):
token: str
servers: list[Server]
class Config(TypedDict):
logging: Logging
display: Display
users: list[User]