Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I want to get movies according to genre information by using imdbpy. I found IMDb.get_keyword function but it did not work for me. Any idea?
Example:
from imdb import IMDb ia = IMDb() print ia.get_keyword(u'ring', results = 5)
あなたはプロキシの後ろにいますか?
その場合、set_proxyが必要になる場合があります。
i.set_proxy('http://yourhttproxyurl:proxyport/')
次に、search_keywordを使用して、ジャンルの特定のキーワードに一致する可能性のある映画を検索します
import imdb ia = imdb.IMDb() t_result = ia.search_keyword(u'comedy') // process your list of t_result