"""Delphi API consts.""" from datetime import date from server.constants.delphi.videos.only import VideosOnly START_DATE_MIN = date(1970, 1, 1) class VideosInclude: DEMOGRAPHICS = "demographics" VIEWS = "views" ALL = "all" ONLY_MAPPING = { ALL: None, VIEWS: [ VideosOnly.VIEWS, VideosOnly.DEVICES, VideosOnly.ENGAGEMENT, VideosOnly.TRAFFIC_SOURCES, VideosOnly.WATCH_TIMES, ], DEMOGRAPHICS: [VideosOnly.DEMOGRAPHICS], } class SortBy: STREAMS = "streams" DATE = "date" RELEASE_DATE = "release_date" _STREAMS_INFO_POSTFIX = "_streams_info" _GENDERS_KEY = "genders" _AGE_BANDS_POSTFIX = "_age_bands" YOUTUBE_URL_TEMPLATE = "https://www.youtube.com/watch?v={video_id}"