node-imdb-api icon indicating copy to clipboard operation
node-imdb-api copied to clipboard

Get one episode

Open SubJunk opened this issue 5 years ago • 0 comments

The OMDb API gives the ability to get a single episode (e.g. https://www.omdbapi.com/?t=Homeland&plot=full&r=json&season=1&episode=1&apikey=) and it would be useful to be able to do that with this module too. Is that something you would consider @worr ?

Consider that right now, in order to get information about one episode, I need to do many requests - do a series lookup, then use episodes() which does a request for every season. Some TV series have 30+ seasons so that quickly adds up, and those requests are performed in parallel which can lead to network saturation.

SubJunk avatar Jan 28 '21 01:01 SubJunk