]> git.armaanb.net Git - phrases.git/blobdiff - phrases.py
change to CSV instead of fortune-style database
[phrases.git] / phrases.py
index 39d6f0c7e59be1d3101d120fb89b57b669e68c5d..c00f415f2a4139499fe7cccae17367df8117c5e2 100755 (executable)
@@ -5,56 +5,42 @@
 import argparse
 import random
 import sys
-import re
-
-# Create list of phrases from phrase file
-def read_phrases(phrase_file):
-    f = open(phrase_file, 'r')
-    contents = f.read()
-
-    lines = [line.rstrip() for line in contents.split('\n')]
-    delim = re.compile(r'^%$')
-    phrases = []
-    cur = []
-
-    for line in lines:
-        if delim.match(line):
-            phrase = '\n'.join(cur)
-            if phrase.strip():
-                phrases.append(phrase)
-            cur = []
-            continue
-        cur.append(line)
-
-    return phrases
+import csv
 
 # Main program
 def main(args=sys.argv[1:]):
     parser = argparse.ArgumentParser(description="Latin famous phrases in the terminal.")
-    parser.add_argument("-e", "--english", action='store_true', help="Output English.")
-    parser.add_argument("-l", "--latin", action='store_true', help="Output Latin (default)")
-    parser.add_argument("-n", "--notes", action='store_true', help="Output notes on phrase")
-    parser.add_argument("-m", "--min", type=int, help="Set the minimum length of latin")
-    parser.add_argument("-M", "--max", type=int, help="Set the maximum length of latin")
+    parser.add_argument("-e", "--english", action='store_true', help="Print the English translation.")
+    parser.add_argument("-i", "--id", action='store_true', help="Print the id of the phrase.")
+    parser.add_argument("-l", "--latin", action='store_true', help="Print the Latin phrase (default)")
+    parser.add_argument("-m", "--min", type=int, default=0, help="Set the minimum length of the Latin phrase")
+    parser.add_argument("-M", "--max", type=int, default=10000000, help="Set the maximum length of Latin phrase")
+    parser.add_argument("-n", "--notes", action='store_true', help="Print any notes on phrase")
     args = parser.parse_args()
 
-    phrases = list(read_phrases("/usr/share/phrases/phrases"))
-    randomRecord = random.randint(0, len(phrases) - 1)
-    randphrase = phrases[randomRecord]
-
-    if args.min:
-        while True:
-            randomRecord = random.randint(0, len(phrases) - 1)
-            randphrase = phrases[randomRecord]
-            if args.min <= len(randphrase.split('\n')[0]) <= args.max:
-                break
-    if args.latin:
-        print(randphrase.split('\n')[0])
-    if args.english:
-        print(randphrase.split('\n')[1])
-    if args.notes:
-        print(randphrase.split('\n')[2])
-    if not len(sys.argv) > 1:
-        print(randphrase.split('\n')[0])
-
-main()
+    id = []
+
+    with open('/usr/share/phrases/phrases.csv') as f:
+        reader = csv.reader(f)
+        for row in reader:
+            if args.max >= int(row[len(row) - 1]) >= args.min:
+                id.append(row[0])
+        chosen = id[random.randint(0, len(id))]
+
+    with open('/usr/share/phrases/phrases.csv') as f:
+        reader = csv.reader(f)
+        for row in reader:
+            if row[0] == chosen:
+                if args.id:
+                    print(row[0])
+                if args.latin:
+                    print(row[1])
+                if args.english:
+                    print(row[2])
+                if args.notes:
+                    print(row[3])
+                if not len(sys.argv) > 1:
+                    print(row[1])
+
+if __name__ == "__main__":
+    main()