| Conditions | 1 | 
| Total Lines | 22 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | import logging | ||
| 12 | def main( | ||
| 13 | demonstration=True, | ||
| 14 | show_lines_with_no_data=True, | ||
| 15 | ) -> None: | ||
| 16 | configure_logging(demonstration) | ||
| 17 |     logging.getLogger(__name__).info("Program started...") | ||
| 18 | |||
| 19 | load_dotenv() | ||
| 20 | |||
| 21 | # CountriesUpdater().run() | ||
| 22 | # CompaniesUpdater().run() | ||
| 23 | # OperatingSitesUpdater().run() | ||
| 24 | |||
| 25 | # NewFilesRegistrar().run() | ||
| 26 | |||
| 27 | # with CategoryPredictor() as category_predictor: | ||
| 28 | # MavUpdater(category_predictor).run() | ||
| 29 | # GysevUpdater(category_predictor).run() | ||
| 30 | |||
| 31 | Mapper(show_lines_with_no_data).run() | ||
| 32 | |||
| 33 |     logging.getLogger(__name__).info("...program finished!") | ||
| 34 | |||
| 61 |