aboutsummaryrefslogtreecommitdiff
path: root/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'filters.py')
-rw-r--r--filters.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/filters.py b/filters.py
index bad50e9..2a23553 100644
--- a/filters.py
+++ b/filters.py
@@ -3,6 +3,8 @@ import re
def tag_gen(input_str):
input_str = input_str.lower()
input_str = re.sub(r'aii', '', input_str)
+ input_str = re.sub(r'atd', '', input_str)
+ input_str = re.sub(r'et\/ti', '', input_str)
input_str = re.sub(r'20\d{2}-\d{2}', '', input_str)
input_str = re.sub(r'[pb]\d+', '', input_str)
input_str = re.sub(r'\d', '', input_str)
@@ -11,6 +13,7 @@ def tag_gen(input_str):
input_str = re.sub(r'stylofoon', '', input_str)
input_str = re.sub(r'[-]', '', input_str)
input_str = re.sub(r'\s+', ' ', input_str)
+ input_str = re.sub(r' \(c\+\+\)', '', input_str)
return input_str.strip()
def title_filter(input_str):