You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently finders use two strings. One contains a literal example of a header and the other contains special characters that define how the header can vary. It works well for UK Teletext/Oracle/Ceefax but has problems with other broadcasts from countries:
No way to define numeric month/year dates.
Text patterns expect the English spellings.
The system is quite confusing to use.
One possible way to improve the finders would be to use regular expressions. This would allow any arbitrary type of header to be matched. However the finder needs to do fuzzy matching with ranking based on the type of match. Also, regular expressions would probably be even harder to understand - although they are at least a standard rather than something I have made up.
The text was updated successfully, but these errors were encountered:
vhs-teletext/teletext/finders.py
Line 144 in 088da39
Currently finders use two strings. One contains a literal example of a header and the other contains special characters that define how the header can vary. It works well for UK Teletext/Oracle/Ceefax but has problems with other broadcasts from countries:
One possible way to improve the finders would be to use regular expressions. This would allow any arbitrary type of header to be matched. However the finder needs to do fuzzy matching with ranking based on the type of match. Also, regular expressions would probably be even harder to understand - although they are at least a standard rather than something I have made up.
The text was updated successfully, but these errors were encountered: