On Jan 27, Till Hennig <[email protected]> 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 <[email protected]> [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
[email protected]
https://lists.sourceforge.net/lists/listinfo/imdbpy-help