如何使用 imdbpy 检索给定类型下给定数量的电影?
我开始使用 imdbpy,我对实现具有以下规范的方法很感兴趣:
输入:
- numberToRetrieve(要检索的电影数量)
- movieGenre(例如电影的类型:'恐怖) ')
输出:
- 电影对象列表
提前非常感谢!
约书亚
I am starting using imdbpy and I am interesting in a way to implement a method with the following specifications:
Inputs:
- numberToRetrieve (number of movies to retrive back)
- movieGenre (the genre of movies by example:'horror')
Output:
- List of movies object
Many thanks in advance!
Joshua
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经太晚了,但我会为将来需要它的其他用户回答。
你可以做到这一点(至少不容易)。
我最好的建议是使用 imdbpy2sql.py 脚本填充您选择的数据库(Postgresql、MySQL、SQLite 等),然后将一系列批处理操作编写为 SQL 语句。您可能需要到处添加一些索引以加快数据检索速度。
I'm way too late, but I answer for other user that will need it in the future.
You can do this (not easily, at least).
My best advice is to use the imdbpy2sql.py script to populate a database of your choice (Postgresql, MySQL, SQLite and other) and then script your series of batch operation as SQL statements. It's possible that you will need to add some indexes here and there to speed-up data retrieving.