.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.plugins.oa_doi_rewrite.SXNGPlugin Class Reference
+ Inheritance diagram for searx.plugins.oa_doi_rewrite.SXNGPlugin:
+ Collaboration diagram for searx.plugins.oa_doi_rewrite.SXNGPlugin:

Public Member Functions

None __init__ (self, "PluginCfg" plg_cfg)
 
bool on_result (self, "SXNG_Request" request, "SearchWithPlugins" search, "Result" result)
 
- Public Member Functions inherited from searx.plugins._core.Plugin
None __init__ (self, PluginCfg plg_cfg)
 
int __hash__ (self)
 
 __eq__ (self, other)
 
bool init (self, "flask.Flask" app)
 
bool pre_search (self, SXNG_Request request, "SearchWithPlugins" search)
 
None|typing.Sequence[Resultpost_search (self, SXNG_Request request, "SearchWithPlugins" search)
 

Public Attributes

 info
 

Additional Inherited Members

- Static Public Attributes inherited from searx.plugins._core.Plugin
str id = ""
 
typing active .ClassVar[bool]
 
list keywords = []
 
logging log .Logger
 
str fqn = ""
 

Detailed Description

Avoid paywalls by redirecting to open-access.

Definition at line 46 of file oa_doi_rewrite.py.

Constructor & Destructor Documentation

◆ __init__()

None searx.plugins.oa_doi_rewrite.SXNGPlugin.__init__ ( self,
"PluginCfg" plg_cfg )

Definition at line 51 of file oa_doi_rewrite.py.

51 def __init__(self, plg_cfg: "PluginCfg") -> None:
52 super().__init__(plg_cfg)
53 self.info = PluginInfo(
54 id=self.id,
55 name=gettext("Open Access DOI rewrite"),
56 description=gettext("Avoid paywalls by redirecting to open-access versions of publications when available"),
57 preference_section="general",
58 )
59

References __init__().

Referenced by __init__().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Function Documentation

◆ on_result()

bool searx.plugins.oa_doi_rewrite.SXNGPlugin.on_result ( self,
"SXNG_Request" request,
"SearchWithPlugins" search,
"Result" result )
Runs for each result of each engine and returns a boolean:

- ``True`` to keep the result
- ``False`` to remove the result from the result list

The ``result`` can be modified to the needs.

.. hint::

   If :py:obj:`Result.url <searx.result_types._base.Result.url>` is modified,
   :py:obj:`Result.parsed_url <searx.result_types._base.Result.parsed_url>` must
   be changed accordingly:

   .. code:: python

      result["parsed_url"] = urlparse(result["url"])

Reimplemented from searx.plugins._core.Plugin.

Definition at line 60 of file oa_doi_rewrite.py.

65 ) -> bool: # pylint: disable=unused-argument
66 if result.parsed_url:
67 result.filter_urls(filter_url_field)
68 return True
69
70

Member Data Documentation

◆ info

searx.plugins.oa_doi_rewrite.SXNGPlugin.info
Initial value:
= PluginInfo(
id=self.id,
name=gettext("Open Access DOI rewrite"),
description=gettext("Avoid paywalls by redirecting to open-access versions of publications when available"),
preference_section="general",
)

Definition at line 53 of file oa_doi_rewrite.py.


The documentation for this class was generated from the following file: