forked from nonsleepr/edu_10gen_dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
44 lines (42 loc) · 1.07 KB
/
config.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
EMAIL = '[email protected]'
PASSWORD='password'
DOMAIN='courses.edx.org'
#DOMAIN='education.10gen.com'
YDL_PARAMS = \
{'consoletitle': False,
'continuedl': True,
'forcedescription': False,
'forcefilename': False,
'forceformat': False,
'forcethumbnail': False,
'forcetitle': False,
'forceurl': False,
'format': None,
'format_limit': None,
'ignoreerrors': False,
'listformats': None,
'logtostderr': False,
'matchtitle': None,
'max_downloads': None,
'nooverwrites': True,
'nopart': False,
'noprogress': False,
'outtmpl': u'%(id)s.%(ext)s',
'password': None,
'playlistend': -1,
'playliststart': 1,
'prefer_free_formats': False,
'quiet': False,
'ratelimit': None,
'rejecttitle': None,
'retries': 10,
'simulate': False,
'skip_download': False,
'subtitleslang': None,
'updatetime': True,
'usenetrc': False,
'username': None,
'verbose': True,
'writedescription': False,
'writeinfojson': False,
'writesubtitles': False}