1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2024-11-26 20:47:10 +00:00

Add "De" as unwanted title prefix

This commit is contained in:
Yohann D'ANELLO 2020-09-26 11:45:31 +02:00
parent 4198ea8a72
commit be76bf4857

View File

@ -38,6 +38,7 @@ class Command(BaseCommand):
if all(not unicodedata.category(char).startswith(cat)
for cat in {'M', 'P', 'Z', 'C'}) or char == ' '
).casefold().upper()
title_normalized = re.sub(r'^DE ', '', title_normalized)
title_normalized = re.sub(r'^LE ', '', title_normalized)
title_normalized = re.sub(r'^LA ', '', title_normalized)
title_normalized = re.sub(r'^LES ', '', title_normalized)