| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | 
"""IMDB - Internet Movie DatabaseRetrieves results from a basic search.  Advanced search options are notsupported.  IMDB's API is undocumented, here are some posts about:- https://stackoverflow.com/questions/1966503/does-imdb-provide-an-api- https://rapidapi.com/blog/how-to-use-imdb-api/An alternative that needs IMDPro_ is `IMDb and Box Office Mojo<https://developer.imdb.com/documentation>`_.. __IMDPro: https://pro.imdb.com/login"""import jsonabout = {    "website": 'https://imdb.com/',    "wikidata_id": 'Q37312',    "official_api_documentation": None,    "use_official_api": False,    "require_api_key": False,    "results": 'HTML',}categories = []paging = Falsesuggestion_url = "https://v2.sg.media-imdb.com/suggestion/{letter}/{query}.json"href_base = 'https://imdb.com/{category}/{entry_id}'search_categories = {"nm": "name", "tt": "title", "kw": "keyword", "co": "company", "ep": "episode"}def request(query, params):    query = query.replace(" ", "_").lower()    params['url'] = suggestion_url.format(letter=query[0], query=query)    return paramsdef response(resp):    suggestions = json.loads(resp.text)    results = []    for entry in suggestions.get('d', []):                entry_id = entry['id']        categ = search_categories.get(entry_id[:2])        if categ is None:            logger.error('skip unknown category tag %s in %s', entry_id[:2], entry_id)            continue        title = entry['l']        if 'q' in entry:            title += " (%s)" % entry['q']        content = ''        if 'rank' in entry:            content += "(%s) " % entry['rank']        if 'y' in entry:            content += str(entry['y']) + " - "        if 's' in entry:            content += entry['s']                image_url = entry.get('i', {}).get('imageUrl')        if image_url:                        image_url_name, image_url_prefix = image_url.rsplit('.', 1)                                                                                    magic = 'QL75_UX280_CR0,0,280,414_'            if not image_url_name.endswith('_V1_'):                magic = '_V1_' + magic            image_url = image_url_name + magic + '.' + image_url_prefix        results.append(            {                "title": title,                "url": href_base.format(category=categ, entry_id=entry_id),                "content": content,                "img_src": image_url,            }        )    return results
 |