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
>>>importguessit>>>guessit.__version__'2.1.4'# Acronym in middle or beginning of title>>>guessit.guessit('This T.I.T.L.E. has dots')
MatchesDict([('title', 'This T I.T.L.E has dots'), ('type', 'movie')]) # missing first and last dot>>>guessit.guessit('This T.I.T.L.E has dots') # No trailing dot in acronymMatchesDict([('title', 'This T I.T.L E has dots'), ('type', 'movie')]) # missing first and last dot# Acronym at end of title>>>guessit.guessit('Dots in this T.I.T.L.E.')
MatchesDict([('title', 'Dots in this T I.T.L.E.'), ('type', 'movie')]) # only missing first dot>>>guessit.guessit('Dots in this T.I.T.L.E') # Acronym at end of title w/o trailing dotMatchesDict([('title', 'Dots in this T I.T.L.E'), ('type', 'movie')]) # only missing first dot
The text was updated successfully, but these errors were encountered:
Guessit Version: 2.1.4
Python Version
Some dots get replaced with spaces, others don't.
The text was updated successfully, but these errors were encountered: