On Jan 27, Till Hennig <spei...@hotmail.com> wrote:

> Hello, imdb supplies information about the exact release date of a
> movie, but as far as I know, imdbpy is only capable of returning the
> year value, or am I missing something? Can I get this information
> with some kind of workaround? Thanks.

Try this:
  from imdb import IMDb
  i = IMDb('http') # or 'mobile'
  movie = i.get_movie('0133093') # The Matrix, for example.
  i.update(movie, 'release dates')
  print movie['release dates']


The same information is available locally, for 'sql' and 'local' (with
'sql' you don't even need the i.update call - even if it doesn't hurt)
in the plain text data files.


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

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Imdbpy-help mailing list
Imdbpy-help@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/imdbpy-help

Reply via email to