.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
il_post.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Engine for Il Post, a largely independent online Italian newspaper.
3
4To use this engine add the following entry to your engines
5list in ``settings.yml``:
6
7.. code:: yaml
8
9 - name: il post
10 engine: il_post
11 shortcut: pst
12 disabled: false
13
14"""
15
16from urllib.parse import urlencode
17from searx.result_types import EngineResults
18
19engine_type = "online"
20language_support = False
21categories = ["news"]
22paging = True
23page_size = 10
24
25time_range_support = True
26time_range_args = {"month": "pub_date:ultimi_30_giorni", "year": "pub_date:ultimo_anno"}
27
28search_api = "https://api.ilpost.org/search/api/site_search/?"
29
30about = {
31 "website": "https://www.ilpost.it",
32 "wikidata_id": "Q3792882",
33 "official_api_documentation": None,
34 "use_official_api": True,
35 "require_api_key": False,
36 "results": "JSON",
37 "language": "it",
38}
39
40
41def request(query, params):
42 query_params = {
43 "qs": query,
44 "pg": params["pageno"],
45 "sort": "date_d",
46 "filters": "ctype:articoli",
47 }
48
49 if params["time_range"]:
50 if params["time_range"] not in time_range_args:
51 return None
52 query_params["filters"] += f";{time_range_args.get(params['time_range'], 'pub_date:da_sempre')}"
53 params["url"] = search_api + urlencode(query_params)
54 return params
55
56
57def response(resp) -> EngineResults:
58 res = EngineResults()
59 json_data = resp.json()
60
61 for result in json_data["docs"]:
62 res.add(
63 res.types.MainResult(
64 url=result["link"],
65 title=result["title"],
66 content=result.get("summary", ""),
67 thumbnail=result.get("image"),
68 )
69 )
70
71 return res
request(query, params)
Definition il_post.py:41
EngineResults response(resp)
Definition il_post.py:57