如何使用 IMDbPy 获取电影的缩略图?
使用 IMDbPy 从 IMDB 网站访问电影非常容易:
import imdb
access = imdb.IMDb()
movie = access.get_movie(3242) # random ID
print "title: %s year: %s" % (movie['title'], movie['year'])
但是我看不到如何获取图片或缩略图的电影封面。 建议?
Using IMDbPy it is painfully easy to access movies from the IMDB site:
import imdb
access = imdb.IMDb()
movie = access.get_movie(3242) # random ID
print "title: %s year: %s" % (movie['title'], movie['year'])
However I see no way to get the picture or thumbnail of the movie cover. Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意:
...
如果由于某种原因您无法使用上述内容,您始终可以使用 BeautifulSoup 之类的东西来获取封面网址。
Note:
...
If for some reason you can't use the above, you can always use something like BeautifulSoup to get the cover url.
来自 IMDbPy 邮件列表的回复:
Response from the IMDbPy mailing list: