| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | # SPDX-License-Identifier: AGPL-3.0-or-later""" Searchcode (IT)"""from json import loadsfrom urllib.parse import urlencode# aboutabout = {    "website": 'https://searchcode.com/',    "wikidata_id": None,    "official_api_documentation": 'https://searchcode.com/api/',    "use_official_api": True,    "require_api_key": False,    "results": 'JSON',}# engine dependent configcategories = ['it']paging = True# search-urlurl = 'https://searchcode.com/'search_url = url + 'api/codesearch_I/?{query}&p={pageno}'# special code-endings which are not recognised by the file endingcode_endings = {'cs': 'c#', 'h': 'c', 'hpp': 'cpp', 'cxx': 'cpp'}# do search-requestdef request(query, params):    params['url'] = search_url.format(query=urlencode({'q': query}), pageno=params['pageno'] - 1)    return params# get response from search-requestdef response(resp):    results = []    search_results = loads(resp.text)    # parse results    for result in search_results.get('results', []):        href = result['url']        title = "" + result['name'] + " - " + result['filename']        repo = result['repo']        lines = dict()        for line, code in result['lines'].items():            lines[int(line)] = code        code_language = code_endings.get(            result['filename'].split('.')[-1].lower(), result['filename'].split('.')[-1].lower()        )        # append result        results.append(            {                'url': href,                'title': title,                'content': '',                'repository': repo,                'codelines': sorted(lines.items()),                'code_language': code_language,                'template': 'code.html',            }        )    # return results    return results
 |