summaryrefslogtreecommitdiff
path: root/cupinder.py
diff options
context:
space:
mode:
Diffstat (limited to 'cupinder.py')
-rw-r--r--cupinder.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/cupinder.py b/cupinder.py
index 7835ea1..cb0d171 100644
--- a/cupinder.py
+++ b/cupinder.py
@@ -111,6 +111,15 @@ if __name__=='__main__':
like = (language == config.TARGET_LANGUAGE)
+ if like and not(p._job_title is None):
+
+ text = p._job_title.lower()
+
+ for kwd in config.BLACK_LIST_KEYWORDS:
+ if kwd in text:
+ like = False
+ break
+
if like and not(p._bio is None):
text = p._bio.lower()