.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
4
To use this engine add the following entry to your engines
5
list 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
16
from
urllib.parse
import
urlencode
17
from
searx.result_types
import
EngineResults
18
19
engine_type =
"online"
20
language_support =
False
21
categories = [
"news"
]
22
paging =
True
23
page_size = 10
24
25
time_range_support =
True
26
time_range_args = {
"month"
:
"pub_date:ultimi_30_giorni"
,
"year"
:
"pub_date:ultimo_anno"
}
27
28
search_api =
"https://api.ilpost.org/search/api/site_search/?"
29
30
about = {
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
41
def
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
57
def
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
searx.result_types.EngineResults
Definition
__init__.py:51
searx.engines.il_post.request
request(query, params)
Definition
il_post.py:41
searx.engines.il_post.response
EngineResults response(resp)
Definition
il_post.py:57
searx.result_types
Definition
__init__.py:1
searxng
searx
engines
il_post.py
Generated on Mon Mar 31 2025 23:37:38 for .oO SearXNG Developer Documentation Oo. by
1.13.2