kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
114 wiersze
2.5 KiB
Python
114 wiersze
2.5 KiB
Python
# from https://help.apple.com/itc/podcasts_connect/#/itc9267a2f12
|
|
ITUNES_CATEGORIES = {
|
|
"Arts": [
|
|
"Books",
|
|
"Design",
|
|
"Fashion & Beauty",
|
|
"Food",
|
|
"Performing Arts",
|
|
"Visual Arts",
|
|
],
|
|
"Business": [
|
|
"Careers",
|
|
"Entrepreneurship",
|
|
"Investing",
|
|
"Management",
|
|
"Marketing",
|
|
"Non-Profit",
|
|
],
|
|
"Comedy": ["Comedy Interviews", "Improv", "Stand-Up"],
|
|
"Education": ["Courses", "How To", "Language Learning", "Self-Improvement"],
|
|
"Fiction": ["Comedy Fiction", "Drama", "Science Fiction"],
|
|
"Government": [],
|
|
"History": [],
|
|
"Health & Fitness": [
|
|
"Alternative Health",
|
|
"Fitness",
|
|
"Medicine",
|
|
"Mental Health",
|
|
"Nutrition",
|
|
"Sexuality",
|
|
],
|
|
"Kids & Family": [
|
|
"Education for Kids",
|
|
"Parenting",
|
|
"Pets & Animals",
|
|
"Stories for Kids",
|
|
],
|
|
"Leisure": [
|
|
"Animation & Manga",
|
|
"Automotive",
|
|
"Aviation",
|
|
"Crafts",
|
|
"Games",
|
|
"Hobbies",
|
|
"Home & Garden",
|
|
"Video Games",
|
|
],
|
|
"Music": ["Music Commentary", "Music History", "Music Interviews"],
|
|
"News": [
|
|
"Business News",
|
|
"Daily News",
|
|
"Entertainment News",
|
|
"News Commentary",
|
|
"Politics",
|
|
"Sports News",
|
|
"Tech News",
|
|
],
|
|
"Religion & Spirituality": [
|
|
"Buddhism",
|
|
"Christianity",
|
|
"Hinduism",
|
|
"Islam",
|
|
"Judaism",
|
|
"Religion",
|
|
"Spirituality",
|
|
],
|
|
"Science": [
|
|
"Astronomy",
|
|
"Chemistry",
|
|
"Earth Sciences",
|
|
"Life Sciences",
|
|
"Mathematics",
|
|
"Natural Sciences",
|
|
"Nature",
|
|
"Physics",
|
|
"Social Sciences",
|
|
],
|
|
"Society & Culture": [
|
|
"Documentary",
|
|
"Personal Journals",
|
|
"Philosophy",
|
|
"Places & Travel",
|
|
"Relationships",
|
|
],
|
|
"Sports": [
|
|
"Baseball",
|
|
"Basketball",
|
|
"Cricket",
|
|
"Fantasy Sports",
|
|
"Football",
|
|
"Golf",
|
|
"Hockey",
|
|
"Rugby",
|
|
"Running",
|
|
"Soccer",
|
|
"Swimming",
|
|
"Tennis",
|
|
"Volleyball",
|
|
"Wilderness",
|
|
"Wrestling",
|
|
],
|
|
"Technology": [],
|
|
"True Crime": [],
|
|
"TV & Film": [
|
|
"After Shows",
|
|
"Film History",
|
|
"Film Interviews",
|
|
"Film Reviews",
|
|
"TV Reviews",
|
|
],
|
|
}
|
|
|
|
ITUNES_SUBCATEGORIES = [s for p in ITUNES_CATEGORIES.values() for s in p]
|