Files
parser/parsers/__init__.py
Игорь Бандурист 770445feaa
All checks were successful
continuous-integration/drone/push Build is passing
добавил атостарт всех сайтов
2026-05-16 12:41:54 +10:00

21 lines
579 B
Python

"""
Парсеры приложения
"""
from .base import BaseParser
from .source1 import Source1Parser, start_pars_one_istochnik, scheduled_parser_1
from .source2 import Source2Parser, start_pars_two_istochnik, scheduled_parser_2
from .universal import UniversalParser, start_pars_all_istochnik
__all__ = [
'BaseParser',
'Source1Parser',
'start_pars_one_istochnik',
'scheduled_parser_1',
'Source2Parser',
'start_pars_two_istochnik',
'scheduled_parser_2',
'UniversalParser',
'start_pars_all_istochnik',
'scheduled_parser_universal'
]