mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 03:09:16 +02:00
See #170: RSS feeds for channels
This commit is contained in:
parent
a04b0b706b
commit
9c22a72ed1
18 changed files with 923 additions and 6 deletions
111
api/funkwhale_api/audio/categories.py
Normal file
111
api/funkwhale_api/audio/categories.py
Normal file
|
@ -0,0 +1,111 @@
|
|||
# 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",
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue