-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.example.py
50 lines (46 loc) · 2.01 KB
/
config.example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copy this to config.py and update necessary values
# Spotify Username (as listed on https://www.spotify.com/us/account/profile/)
username = "CHANGE_ME"
# Spotify Authentication Scopes
scope = "playlist-read-private playlist-modify-private playlist-modify-public"
# Spotify Application Details
client_id = "CHANGE_ME"
client_secret = "CHANGE_ME"
redirect_uri = "http://localhost:65000"
# Genres on Beatport ("Arbitrary name": "URL path for genre")
genres = {
"All Genres": "",
"140 / Deep Dubstep / Grime": "140-deep-dubstep-grime/95",
"Afro House": "afro-house/89",
"Amapiano": "amapiano/98",
"Bass / Club": "bass-club/85",
"Bass House": "bass-house/91",
"Breaks / Breakbeat / UK Bass": "breaks-breakbeat-uk-bass/9",
"Dance / Electro Pop": "dance-electro-pop/39",
"Deep House": "deep-house/12",
"DJ Tools": "dj-tools/16",
"Drum & Bass": "drum-bass/1",
"Dubstep": "dubstep/18",
"Electro (Classic / Detroit / Modern)": "electro-classic-detroit-modern/94",
"Electronica": "electronica/3",
"Funky House": "funky-house/81",
"Hard Dance / Hardcore / Neo Rave": "hard-dance-hardcore-neo-rave/8",
"Hard Techno": "hard-techno/2",
"House": "house/5",
"Indie Dance": "indie-dance/37",
"Jackin House": "jackin-house/97",
"Mainstage": "mainstage/96",
"Melodic House & Techno": "melodic-house-techno/90",
"Minimal / Deep Tech": "minimal-deep-tech/14",
"Nu Disco / Disco": "nu-disco-disco/50",
"Organic House / Downtempo": "organic-house-downtempo/93",
"Progressive House": "progressive-house/15",
"Psy-Trance": "psy-trance/13",
"Tech House": "tech-house/11",
"Techno (Peak Time / Driving)": "techno-peak-time-driving/6",
"Techno (Raw / Deep / Hypnotic)": "techno-raw-deep-hypnotic/92",
"Trance (Main Floor)": "trance-main-floor/7",
"Trance (Raw / Deep / Hypnotic)": "trance-raw-deep-hypnotic/99",
"Trap / Wave": "trap-wave/38",
"UK Garage / Bassline": "uk-garage-bassline/86",
}