"""Mode API Constants.""" MAX_AGE_ONE_HOUR = 3600 MAX_AGE_ONE_DAY = 86400 BASE_URI = 'https://modeanalytics.com' ORGANIZATION = 'theorchard' MODE_REPORTS_URL = '{}/{}/reports'.format(BASE_URI, ORGANIZATION) MODE_API_URL = '{}/api/{}'.format(BASE_URI, ORGANIZATION) REPORT_RUN_COMPLETE = 'succeeded' REPORT_RUN_RUNNING = 'enqueuing'