dokus
Fetch information about documentaries in the ARTE, Das Erste, MDR, SRF, SWR and Deutsche Welle media libraries.
Usage
The module has the following methods: all
, arte
, daserste
, mdr
, srf
, swr
and dw
. Each method returns a Promise
which resolves in a list of objects representing single documentaries:
const dokus = require('dokus')
dokus.all().then(…)
will resolve in a list of objects which look like this:
{
title: '…',
description: '…',
tags: […], // (not supported by all media libraries)
link: '…', // media library url
image: '…', // thumbnail
network: 'arte'
}
Please note that the script - especially daserste
- may take a while to run.
Similar Projects
- doku-tagger - Try to assign country data to the fetched documentaries.
- doku-karte - "German documentaries sorted by country and displayed on a map."
Contributing
If you found a bug, want to propose a feature or feel the urge to complain about your life, feel free to visit the issues page.