gitextract_mbnetjyr/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── 1_issue_report.yml │ ├── 2_feature_request.yml │ ├── 3_question.yml │ └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example-config.toml ├── isubrip/ │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── commands/ │ │ ├── __init__.py │ │ └── download.py │ ├── config.py │ ├── constants.py │ ├── data_structures.py │ ├── logger.py │ ├── scrapers/ │ │ ├── __init__.py │ │ ├── appletv_scraper.py │ │ ├── itunes_scraper.py │ │ └── scraper.py │ ├── subtitle_formats/ │ │ ├── __init__.py │ │ ├── subrip.py │ │ ├── subtitles.py │ │ └── webvtt.py │ ├── ui.py │ └── utils.py ├── pyproject.toml └── tests/ ├── .gitignore ├── __init__.py ├── benchmarks/ │ ├── __init__.py │ ├── download_benchmark.py │ └── download_benchmark_module.py ├── test_utils.py └── tools/ ├── __init__.py ├── generate_mock_data.py └── mock_loader.py