class Tmdb::Trending

Defined in:

trending.cr

Class Method Summary

Class Method Detail

def self.trending_movies(time_window : TimeWindow, skip_cache : Bool = false) : LazyIterator(MovieResult) #

Get the daily or weekly trending movies. The daily trending list tracks items over the period of a day while items have a 24 hour half life. The weekly list tracks items over a 7 day period, with a 7 day half life.


[View source]
def self.trending_people(time_window : TimeWindow, skip_cache : Bool = false) : LazyIterator(PersonResult) #

Get the daily or weekly trending people. The daily trending list tracks items over the period of a day while items have a 24 hour half life. The weekly list tracks items over a 7 day period, with a 7 day half life.


[View source]
def self.trending_tv_shows(time_window : TimeWindow, skip_cache : Bool = false) : LazyIterator(Tv::ShowResult) #

Get the daily or weekly trending TV shows. The daily trending list tracks items over the period of a day while items have a 24 hour half life. The weekly list tracks items over a 7 day period, with a 7 day half life.


[View source]