I am trying to get the movie info, specifically I am interested in finding the company info (i.e. which company has made the movie). I am using IMDBPY package in python but I am cannot find the info about the company. I am wondering if anyone was able to retrieve the company info for a specific movie from IMDB. In the API description, it is stated that the company info is also available but I cannot find it. Only I can see this info and there is nothing about the company. Title: Genres: Director: Writer: Runtime: Country: Language: Rating: Plot: title: Cover url:
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
You should post a snippet of the code you use. A working code example:
Now, you are probably working on a Movie object that is the result of a search query. As stated in the documentation ( http://imdbpy.sourceforge.net/support.html ) a result object only contains basic information about a movie (after all other information are not present in the search results...)
To fetch the complete information, you have to use the IMDb's class update method. For example: