import requests from os import getenv CLIENT_ID = getenv('client_id') assert CLIENT_ID, "No client_id in env" REDIRECT_URL = requests.utils.quote("http://127.0.0.1:9000/fdev-redirect") AUTH_URL = 'https://auth.frontierstore.net/auth' TOKEN_URL = 'https://auth.frontierstore.net/token' PROPER_USER_AGENT = 'EDCD-a31-0.1' REDIRECT_HTML_TEMPLATE = """
You should be redirected shortly... """ ADMIN_USERS_TEMPLATE = """ {} """ ADMIN_USER_TEMPLATE = '{desc}'