我可以使用 IMDbPY 检索给定电影的 IMDb 电影推荐吗?

发布于 2024-10-24 17:10:45 字数 590 浏览 2 评论 0原文

我正在使用 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:

pulp fiction recommendations

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亚希 2024-10-31 17:10:45

查看源代码,我发现了一些东西:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文