from sanic_envconfig import EnvConfig class Settings(EnvConfig): DEBUG: bool = True HOST: str = '0.0.0.0' PORT: int = 8000 API_URL_BASE: str = 'https://api.digitalocean.com/v2' API_TOKEN: str = None