Project

p3-tvdb

0.0
No commit activity in last 3 years
No release in over 3 years
Search thetvdb.com's database with this api ( requires thetvdb.com registration )
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.13.7
 Project Readme

Gem Version

p3-tvdb

Search thetvdb.com's database

Install

sudo gem install p3-tvdb
tvdb = P3::Tvdb::Search.new("YOURAPIKEY")
results = tvdb.search('the west wing')</code>
west_wing = tvdb.get_series_by_id(results["seriesid"])
puts west_wing.name

=> The West Wing

episode_22 = west_wing.get_episode(1, 22)
puts episode_22.name

=> What Kind of Day Has It Been?


puts west_wing.fanart('en').first.url
=> http://thetvdb.com/banners/fanart/original/72521-2.jpg


puts west_wing.posters('en').first.url
=> http://thetvdb.com/banners/posters/72521-1.jpg


puts west_wing.series_banners('en').first.url
=> http://thetvdb.com/banners/graphical/189-g.jpg


puts west_wing.season_posters(2, 'en').first.url
=> http://thetvdb.com/banners/seasons/72521-2.jpg

Thanks

Thanks to thetvdb.com for their awesome database allowing us to meta out to our hearts consent.