"""Constants related to Product.""" # OWS Product Digital Genre constants CLASSICAL_GENRE_ID = 12 SOUNDTRACK_SUBGENRE_IDS = { 537: 'Film Soundtracks', 545: 'Theatre Scores', 546: 'TV Soundtracks', 1040: 'Original Score', 1041: 'Soundtracks', } WORLD_MUSIC_SUBGENRE_IDS = { 570: 'Chinese Soundtrack', 623: 'Soundtracks', 638: 'Indian Carnatic Classical', 646: 'Indian Hinddustani Classical', 659: 'Indian Tamil Film', 661: 'Indian Telugu Film', 885: 'Turkish Soundtrack', 1057: 'Indian Bollywood', 1058: 'Indian Carnatic Classical Instrumental', 1059: 'Indian Classical', 1061: 'Indian Hinddustani Classical Instrumental', 1062: 'Indian Regional Film', } GENRE_ID = 'genre_id' SUBGENRE_ID = 'subgenre_id' CORRECTION_ID = 'correction_id' OTHER_GENRE = 'other' CLASSICAL_GENRE = 'classical' SOUNDTRACK_GENRE = 'soundtrack' WORLD_MUSIC_GENRE = 'world_music' RELEASE_STATUS = 'release_status' IS_ERR_CORR_ACTN_REQ_MODE = 'is_error_correction_and_action_required' IS_ERR_CORR_MODE = 'error_correction' META_LANGUAGE = 'meta_language' RELEASE_SUBGENRE = 'release_subgenre' RELEASE_IN_CONTENT_STATUS = 'in_content'