forked from MayeulC/hb-downloader
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_data.py
More file actions
32 lines (28 loc) · 712 Bytes
/
config_data.py
File metadata and controls
32 lines (28 loc) · 712 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "Brian Schkerke"
__copyright__ = "Copyright 2016 Brian Schkerke"
__license__ = "MIT"
class ConfigData(object):
VERSION = "0.5.0"
BUG_REPORT_URL = "https://github.com/MayeulC/hb-downloader/issues"
action = ""
print_url = False
download_location = ""
debug = False
auth_sess_cookie = ""
write_md5 = True
read_md5 = True
force_md5 = False
chunk_size = 8192000
ignore_md5 = False
resume_downloads = True
download_platforms = {
'audio': True,
'ebook': True,
'windows': True,
'mac': True,
'linux': True,
'android': True,
'asmjs': False
}