All checks were successful
continuous-integration/drone/push Build is passing
21 lines
579 B
Python
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'
|
|
]
|