weboob-devel/contrib/downloadboob
Laurent Bachelier 6161a0aacd pep8 fixes, modernizations
autopep8 -a -r -i --select E711,E712,W601,W602,W603,W604,W690,E304,E401,E502 .
Also includes some manual reindentations (many are left after the print()
changes).
Manually checked, some modernizations not commited here.
2014-10-10 23:41:43 +02:00
..
downloadboob.conf Add utf-8 support on title_exclude 2013-02-28 15:35:56 +01:00
downloadboob.py pep8 fixes, modernizations 2014-10-10 23:41:43 +02:00
README Add a "id_regexp" parameter to filter results on video id 2013-02-08 14:15:11 +01:00

This script can be used to automatically download videos matching some criteria.

To avoid to download a video twice, all videos are stored in an unique way : .files/<backend name>/<video.id>.avi

For each entry in the configuration file, the script :
- check for new video
- download the new videos
- create a link from <user specify name>/<video.name>.avi to .files/<backend name>/<video id>.avi

In each section of the configuration file :
- backend : the backend to use
- pattern : specify the search pattern
- title_exclude : a pipe seperated list. If an item in this list is substring of the title, then the video is ignored.
- id_regexp : an optional regular expression that the video id must match
- max_results : maximum number of result to parse
- directory : the <user specify name> above.