gitextract_t4lypv78/ ├── .coveragerc ├── .gitignore ├── HOW_IT_WORKS.md ├── LICENSE ├── README.md ├── TRAINING.md ├── examples/ │ ├── filter │ ├── maze │ ├── service │ ├── template.t42 │ ├── terminal │ ├── tti │ └── video ├── misc/ │ ├── teletext-noscanlines.css │ └── teletext.css ├── setup.py ├── teletext/ │ ├── __init__.py │ ├── __main__.py │ ├── celp.py │ ├── charset.py │ ├── cli/ │ │ ├── __init__.py │ │ ├── celp.py │ │ ├── clihelpers.py │ │ ├── teletext.py │ │ ├── training.py │ │ └── vbi.py │ ├── coding.py │ ├── elements.py │ ├── file.py │ ├── finders.py │ ├── gui/ │ │ ├── __init__.py │ │ ├── classify.py │ │ ├── decoder.py │ │ ├── decoder.qml │ │ ├── editor.py │ │ ├── editor.ui │ │ ├── qthelpers.py │ │ ├── service.py │ │ └── vbiplot.py │ ├── image.py │ ├── interactive.py │ ├── mp.py │ ├── packet.py │ ├── parser.py │ ├── pipeline.py │ ├── printer.py │ ├── service.py │ ├── servicedir.py │ ├── sigint.py │ ├── spellcheck.py │ ├── stats.py │ ├── subpage.py │ ├── ts.py │ └── vbi/ │ ├── __init__.py │ ├── clustering.py │ ├── config.py │ ├── line.py │ ├── pattern.py │ ├── patterncuda.py │ ├── patternopencl.py │ ├── training.py │ └── viewer.py └── tests/ ├── __init__.py ├── test_cli.py ├── test_coding.py ├── test_elements.py ├── test_file.py ├── test_mp.py ├── test_packet.py ├── test_sigint.py ├── test_spellcheck.py ├── test_stats.py ├── test_subpage.py └── vbi/ ├── __init__.py ├── test_line.py ├── test_patterncuda.py ├── test_patternopencl.py └── test_training.py