summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-06-18 17:41:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-06-18 17:41:33 (GMT)
commit57e5e3cc81751622e66fc228baaad2d38c408cfa (patch)
tree353338c68f13c4df50ea9f818d21d2fe79ad09ec /config.py
Initial commit.
Diffstat (limited to 'config.py')
-rw-r--r--config.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/config.py b/config.py
new file mode 100644
index 0000000..2c4fdbf
--- /dev/null
+++ b/config.py
@@ -0,0 +1,22 @@
+
+facebook_email = 'XXXX@YYYYY.com'
+facebook_password = 'XXXXXX'
+
+OUTPUT_DIR = 'output'
+
+DISTANCE_IN_KM = True
+
+MIN_AGE = 25.0
+MAX_AGE = 65.0
+
+MAX_DISTANCE_IN_MI = 10
+
+TARGET_LANGUAGE = 'english'
+
+BLACK_LIST_KEYWORDS = [
+ 'God is busy'
+]
+
+COLOR_RESET = "\033[0m"
+COLOR_PASS = "\033[1;31m"
+COLOR_LIKE = "\033[1;32m"