[mod] mudularize & document searx.results

The intention of this patch is to improve modularization & documentation of the
implementations about the *result* items.

  This patch does not contain any functional change!

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2022-06-21 13:14:11 +02:00
parent cee586029c
commit 069e1d7fb4
15 changed files with 935 additions and 262 deletions

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from searx.results import ResultContainer
from searx.results.container import ResultContainer
from tests import SearxTestCase

View file

@ -3,7 +3,7 @@
import json
from urllib.parse import ParseResult
from mock import Mock
from searx.results import Timing
from searx.results.core import Timing
import searx.search.processors
from searx.search import Search