config Config dataclass Class containing all the configuration options and variables used by ccat-api package Source code in cheshire_cat_api/config.py 3 4 5 6 7 8 9 10 11 12@dataclass class Config: """ Class containing all the configuration options and variables used by ccat-api package """ base_url: str = 'localhost' port: int = 1865 user_id: str = "user" auth_key: str = '' secure_connection: bool = False