]> git.armaanb.net Git - phrases.git/blobdiff - extract.py
change to CSV instead of fortune-style database
[phrases.git] / extract.py
index a454569a2eebff59cb883c512b389bd7bb98434b..322a3020c3eccb18c9ad5c29b8ff9845f81771b8 100755 (executable)
@@ -1,23 +1,56 @@
 #!/usr/bin/env python3
-# Tool to extract famous phrases from wikipedia
+# Extract Latin famous phrases from wikipedia
+# Armaan Bhojwani 2020
+
 from bs4 import BeautifulSoup
 import requests
+import csv
+
+def main():
+    url = 'https://en.wikipedia.org/wiki/List_of_Latin_phrases_(full)'
+    response = requests.get(url)
+    html = response.content
+
+    soup = BeautifulSoup(html, "html.parser")
+    list_table = soup.find_all("table", attrs={"class":"wikitable"})
+    with open('phrases.csv', 'w') as f:
+        writer = csv.writer(f)
+
+        i = 0 # For the phrase id
+        # iterate through the tables in the page
+        for table in list_table:
+            for row in table.find_all("tr")[1:]:
+                cell = row.find_all("td")
+                rowc = []
 
-url = 'https://en.wikipedia.org/wiki/List_of_Latin_phrases_(full)'
-response = requests.get(url)
-html = response.content
+                # append phrase id
+                rowc.append(i)
 
-soup = BeautifulSoup(html, "html.parser")
-list_table = soup.find_all("table", attrs={"class":"wikitable"})
+                # avoid out of bounds errors
+                if len(cell) == 2:
+                    lan = 2
+                else:
+                    lan = 3
 
-output = []
+                # add cell content
+                for j in range (0, lan):
+                    content = cell[j]
+                    text=(content.get_text()).rstrip()
+                    rowc.append(text)
 
-for table in list_table:
-    for row in table.find_all("tr")[1:]:
-        cell = row.find_all("td")
-        for content in cell:
-            text = content.get_text()
-            output.append(text)
+                # append length of phrase
+                rowc.append(len(rowc[1]))
+                writer.writerow(rowc)
+                i = i + 1
+    f.close()
 
-print(output)
+    # Strip empty lines
+    with open('phrases.csv', 'r+') as f:
+        lines = f.readlines()
+        f.seek(0)
+        f.writelines(line for line in lines if line.strip())
+        f.truncate()
+    f.close()
 
+if __name__ == "__main__":
+    main()