Api python 中的电影评论

Api for moviereviews in python

我需要 python 的免费电影评论 api 这样我就可以创建一个简单的程序来告诉电影的评级,我还需要一个 api 不需要密钥才能使用

您可以尝试 Simapi,但它无法访问评级(需要 API 密钥)。它确实提供了一些少量的电影元数据。据我所知,这是唯一一种允许您在没有 api 密钥的情况下访问他们的数据的服务。

运行 https://moviesapi.com/m.php?t=avatar&y=&type=movie&r=json returns:

[ { "id": "0499549", "title": "Avatar", "year": "2009", "poster": "N/A", "type": "movie" }, { "id": "0417299", "title": "Avatar: The Last Airbender", "year": "2005", "poster": "N/A", "type": "movie" }, { "id": "0120347", "title": "Tomorrow Never Dies", "year": "1997", "poster": "N/A", "type": "movie" }, { "id": "1133985", "title": "Green Lantern", "year": "2011", "poster": "N/A", "type": "movie" }, { "id": "1630029", "title": "Avatar 2", "year": "2020", "poster": "N/A", "type": "movie" } ]

您厌恶 API 键有什么特别的原因吗?许多 API 服务允许您在不注册信用卡的情况下使用您的数据,它可以像在请求中添加 ?apikey={{YOURAPIKEY}} 一样简单。

我以前在学校和个人项目中使用过 http://www.omdbapi.com/ (omDB),它们非常有用!

希望对您有所帮助。

编辑

omDB 现在确实收费,但每月只需 1 美元。我强烈推荐它!