Files
parser/parsers/__init__.py
Игорь Бандурист e9d7a2d51f
All checks were successful
continuous-integration/drone/push Build is passing
правка
2026-05-16 13:04:03 +10:00

21 lines
607 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, scheduled_parser_universal
__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'
]