我可以使用 IMDbPY 检索给定电影的 IMDb 电影推荐吗?
我正在使用 IMDbPY 检索有关电影的各种数据。例如,如果我有一个“低俗小说(1994)”的电影对象,那么我可以像这样获取它的(第一)导演的名字:
>>> pulp_fiction['director'][0]['name']
u'Quentin Tarantino'
或者第三个演员的名字:
>>> pulp_fiction['cast'][2]['name']
u'Samuel L. Jackson'
以与此类似的方式我可以检索所有类型给定电影的信息(预算、长度、故事情节、错误列表、琐事等)。
我正在寻找的信息是推荐(与当前电影类似的其他电影)。 IMDb 为每部电影提供这样的内容:
是否可以使用 IMDbPY 访问推荐?如果没有,是否有另一种方式来访问推荐而不需要我解析网页?
I'm using IMDbPY to retrieve all kinds of data about movies. For example, if I have a movie object of "Pulp Fiction (1994)" then I can get the name of its (first) director like this:
>>> pulp_fiction['director'][0]['name']
u'Quentin Tarantino'
Or the name of the third actor:
>>> pulp_fiction['cast'][2]['name']
u'Samuel L. Jackson'
In ways similar to this I can retrieve all kinds of information for a given movie (budget, length, storyline, list of goofs, trivia, etc).
The piece of information I'm looking for is recommendations (other movies similar to the current movie). IMDb provides such a thing for each movie:
Is it possible to access the recommendations using IMDbPY? If not, is there another way to access the recommendations which doesn't require me to parse webpages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看源代码,我发现了一些东西:
http:// bitbucket.org/alberanid/imdbpy/src/579c50b280f9/imdb/parser/http/init.py
检查
def get_movie_recommendations(self, movieID)
我还没有没有尝试过,但看起来它可能正在做你正在寻找的事情。
Looking in the source, I found something:
http://bitbucket.org/alberanid/imdbpy/src/579c50b280f9/imdb/parser/http/init.py
check
def get_movie_recommendations(self, movieID)
I haven't tried it, but it looks like it might be doing what you are looking for.