Guest User

Untitled

a guest
Jan 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # same as current 'loose_comparator'
  2. a = StringComparator(cutoff=0.7, cleaner=title_cleaner)
  3. >>> a.set_seq1('your highness 2011 720p bluray')
  4. >>> a.matches('Your Highness (2011) [UNRATED] 720p BrRip x264 - 700MB - YIFY')
  5. False
  6. >>> a.ratio()
  7. 0.6923076923076923
  8.  
  9. # new
  10. b = MovieComparator()
  11. >>> a.set_seq1('Your Highness 2011 720p bluray')
  12. >>> a.matches('Your Highness (2011) [UNRATED] 720p BrRip x264 - 700MB - YIFY')
  13. True
  14. >>> a.ratio()
  15. 1.0
Add Comment
Please, Sign In to add comment