On Apr 19, Andre LeBlanc <andreplebl...@gmail.com> wrote:

> I'm just wondering if its possible to access the
> "Next US Airings" for a TV Episode as seen here:
> http://www.imdb.com/title/tt0121955/episodes#season-13 I've been
> looking around the API and haven't seen anything regarding that data.

That's the _original air date_, and not the _next_ airing date.
Using your example:

import imdb
i = imdb.IMDb('http') # or 'mobile'
m = i.get_movie('0121955')
i.update(m, 'episodes')
print m['episodes'][13][1]['original air date']

If you're searching for the tv schedule:

i.update(m, 'airing')
print m['airing']


To learn about the internals, see README.package ("INFORMATION SETS"
section) and README.series to know how information about series
are structured.


HTH,
-- 
Davide Alberani <davide.alber...@gmail.com> [PGP KeyID: 0x465BFD47]
http://erlug.linux.it/~da/

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Imdbpy-help mailing list
Imdbpy-help@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/imdbpy-help

Reply via email to