aboutsummaryrefslogtreecommitdiff
path: root/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'filters.py')
-rw-r--r--filters.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/filters.py b/filters.py
new file mode 100644
index 0000000..bad50e9
--- /dev/null
+++ b/filters.py
@@ -0,0 +1,21 @@
+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'20\d{2}-\d{2}', '', input_str)
+ input_str = re.sub(r'[pb]\d+', '', input_str)
+ input_str = re.sub(r'\d', '', input_str)
+ input_str = re.sub(r'blok', '', input_str)
+ input_str = re.sub(r'programmeren c', 'programmeren', 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)
+ return input_str.strip()
+
+def title_filter(input_str):
+ input_str = input_str.lower()
+ input_str = re.sub(r'- due', '', input_str)
+ input_str = re.sub(r'- available', '', input_str)
+ input_str = re.sub(r'- availability ends', '', input_str)
+ return input_str.strip()