aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-11-28 01:29:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2011-11-28 01:29:46 +0100
commitc379c181e057491171a43228752fcb7e20c86d5f (patch)
tree19038194db58b26a99979450a6eff975f8ba2aa7
parent31a2ec2d88c935cfacb1745628faee120504ebea (diff)
downloadyoutube-dl-c379c181e057491171a43228752fcb7e20c86d5f.tar.xz
Preliminary implementation of configuration files
-rwxr-xr-xyoutube-dl23
-rwxr-xr-xyoutube_dl/__init__.py23
2 files changed, 38 insertions, 8 deletions
diff --git a/youtube-dl b/youtube-dl
index 63ad30f54..d7e9c50c0 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -702,9 +702,9 @@ class FileDownloader(object):
def process_info(self, info_dict):
"""Process a single dictionary returned by an InfoExtractor."""
- max_downloads = int(self.params.get('max_downloads'))
+ max_downloads = self.params.get('max_downloads')
if max_downloads is not None:
- if self._num_downloads > max_downloads:
+ if self._num_downloads > int(max_downloads):
self.to_screen(u'[download] Maximum number of downloads reached. Skipping ' + info_dict['title'])
return
@@ -3924,6 +3924,20 @@ def parseOpts():
# Deferred imports
import getpass
import optparse
+ import shlex
+
+ def _readOptions(filename):
+ try:
+ optionf = open(filename)
+ except IOError:
+ return [] # silently skip if file is not present
+ try:
+ res = []
+ for l in optionf:
+ res += shlex.split(l, comments=True)
+ finally:
+ optionf.close()
+ return res
def _format_option_string(option):
''' ('-o', '--option') -> -o, --format METAVAR'''
@@ -4104,7 +4118,8 @@ def parseOpts():
parser.add_option_group(authentication)
parser.add_option_group(postproc)
- opts, args = parser.parse_args()
+ argv = _readOptions('/etc/youtube-dl.conf') + _readOptions(os.path.expanduser('~/.youtube-dl.conf')) + sys.argv[1:]
+ opts, args = parser.parse_args(argv)
return parser, opts, args
@@ -4274,7 +4289,7 @@ def _real_main():
'writeinfojson': opts.writeinfojson,
'matchtitle': opts.matchtitle,
'rejecttitle': opts.rejecttitle,
- 'max_downloads': int(opts.max_downloads),
+ 'max_downloads': opts.max_downloads,
})
for extractor in extractors:
fd.add_info_extractor(extractor)
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 63ad30f54..d7e9c50c0 100755
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -702,9 +702,9 @@ class FileDownloader(object):
def process_info(self, info_dict):
"""Process a single dictionary returned by an InfoExtractor."""
- max_downloads = int(self.params.get('max_downloads'))
+ max_downloads = self.params.get('max_downloads')
if max_downloads is not None:
- if self._num_downloads > max_downloads:
+ if self._num_downloads > int(max_downloads):
self.to_screen(u'[download] Maximum number of downloads reached. Skipping ' + info_dict['title'])
return
@@ -3924,6 +3924,20 @@ def parseOpts():
# Deferred imports
import getpass
import optparse
+ import shlex
+
+ def _readOptions(filename):
+ try:
+ optionf = open(filename)
+ except IOError:
+ return [] # silently skip if file is not present
+ try:
+ res = []
+ for l in optionf:
+ res += shlex.split(l, comments=True)
+ finally:
+ optionf.close()
+ return res
def _format_option_string(option):
''' ('-o', '--option') -> -o, --format METAVAR'''
@@ -4104,7 +4118,8 @@ def parseOpts():
parser.add_option_group(authentication)
parser.add_option_group(postproc)
- opts, args = parser.parse_args()
+ argv = _readOptions('/etc/youtube-dl.conf') + _readOptions(os.path.expanduser('~/.youtube-dl.conf')) + sys.argv[1:]
+ opts, args = parser.parse_args(argv)
return parser, opts, args
@@ -4274,7 +4289,7 @@ def _real_main():
'writeinfojson': opts.writeinfojson,
'matchtitle': opts.matchtitle,
'rejecttitle': opts.rejecttitle,
- 'max_downloads': int(opts.max_downloads),
+ 'max_downloads': opts.max_downloads,
})
for extractor in extractors:
fd.add_info_extractor(extractor)