1.2.1 • Published 7 years ago

dokus v1.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

dokus

Fetch information about documentaries in the ARTE, Das Erste, MDR, SRF, SWR and Deutsche Welle media libraries.

npm version Build Status dependency status dev dependency status license chat on gitter

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.