]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/parse.py
Add menu keybindings to config
[lightcards.git] / lightcards / parse.py
index a447485e4b046f4ab16bc67b251c8b140a41cba5..3a1306bfae98840ba312fc58deff160d667ceeb8 100644 (file)
@@ -13,7 +13,9 @@ def md2html(file):
     try:
         return markdown.markdown(open(file, "r").read(), extensions=["tables"])
     except FileNotFoundError:
-        sys.exit(f'lightcards: "{file}": No such file or directory')
+        raise Exception(
+            f'lightcards: "{file}": No such file or directory'
+        ) from None
 
 
 def parse_html(html):
@@ -25,11 +27,18 @@ def parse_html(html):
     soup = BeautifulSoup(html, "html.parser").find("table")
     outp = []
 
-    for x in soup.find_all("tr"):
-        outp.append(Card([clean_text(y) for y in x.find_all("td")[:2]]))
+    try:
+        for x in soup.find_all("tr"):
+            outp.append(Card(tuple([clean_text(y) for y in x.find_all("td")])))
+    except AttributeError:
+        raise Exception("lightcards: No table found") from None
+
+    ths = soup.find_all("th")
+    if len(ths) != 2:
+        raise Exception("lightcards: Headings malformed")
 
     # Return a tuple of nested lists
-    return ([clean_text(x) for x in soup.find_all("th")][:2], outp[1:])
+    return ([clean_text(x) for x in ths], outp[1:])
 
 
 def main(file):