-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py-dist
65 lines (51 loc) · 2.23 KB
/
config.py-dist
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# *~*~*~*~*~* CONFIGURATION *~*~*~*~*~*~*~
# root domain of your gazelle site, no trailing slash
gazelle_url = "https://gazelle.domain"
script_mode = "rutorrent" # one of "file", "rutorrent", "utorrent", "deluge", "transmission"
# gazelle site credentials
gazelle_username = "user"
gazelle_password = "password"
# torrent file write path - optional, fill in if you want to dump out .torrent files
# relative example: torrent_write_path = "./files"
# absolute example: torrent_write_path = "c:\\files"
torrent_write_path = "./files"
# torrent_write_path = "c:\\torrents\\files"
# rutorrent - optional, fill in if you use rtorrent+rutorrent webgui
rutorrent_url = "http://seedbox.domain/rutorrent"
rutorrent_username = "rtuser"
rutorrent_password = "rtpass"
rutorrent_download_dir = "/home/rtuser/music" # fully qualified, no symlinks, no trailing /
rutorrent_add_stopped = True
rutorrent_label = "gazellecli"
# uTorrent - optional, fill in if you are using uTorrent's webUI
utorrent_host = "localhost:10000"
utorrent_username = "admin"
utorrent_password = "admin"
utorrent_download_dir = "C:\\Music"
utorrent_add_stopped = True
# deluge - optional, fill in if you are using deluge
deluge_url = "http://localhost:8112"
deluge_password = "deluge"
deluge_download_dir = "C:\\Music"
deluge_add_stopped = True
# transmission - optional, fill in if you are using transmission
transmission_host = "http://localhost:9091"
transmission_username = "test"
transmission_password = "password"
transmission_download_dir = "/tmp/test/"
transmission_add_stopped = True
# mysql - optional, fill if you are using a MySQL server for the script to store persistant data
use_mysql = False
mysql_host = "localhost"
mysql_db = "gazelle_cli"
mysql_username = "root"
mysql_password = "mysqlroot"
# torrent selection order
encoding_order = ["V0 (VBR)", "V1 (VBR)", "V2 (VBR)", "320", "256", "Lossless", "24bit Lossless"]
media_order = ["CD", "WEB", "Vinyl"]
grab_format = "MP3" # one of "MP3", "FLAC" "AAC"
# ~*~*~*~*~**~* Configuration stuff you probably don't need to change *~*~*~*~*
rtorrent_path_sep = "/" # rtorrent on windows!? sacrilege.
always_grab = False # override artist page caching.
always_reparse = False # override rescan of page dump
# *~*~*~* END OF CONFIGURATION *~*~*~*~*~*