]> git.armaanb.net Git - lightcards.git/blob - lightcards/parse.py
Fix pickle implementation
[lightcards.git] / lightcards / parse.py
1 # Parse markdown table into tuple of lists
2 # Armaan Bhojwani 2021
3
4 import sys
5 from bs4 import BeautifulSoup
6 import markdown
7
8 from .deck import Card
9
10
11 def md2html(file):
12     """Use the markdown module to convert input to HTML"""
13     try:
14         return markdown.markdown(open(file, "r").read(), extensions=["tables"])
15     except FileNotFoundError:
16         sys.exit(f'lightcards: "{file}": No such file or directory')
17
18
19 def parse_html(html):
20     """Use BeautifulSoup to parse the HTML"""
21
22     def clean_text(inp):
23         return inp.get_text().rstrip()
24
25     soup = BeautifulSoup(html, "html.parser").find("table")
26     outp = []
27
28     try:
29         for x in soup.find_all("tr"):
30             outp.append(Card(tuple([clean_text(y) for y in x.find_all("td")])))
31     except AttributeError:
32         sys.exit("lightcards: No table found")
33
34     ths = soup.find_all("th")
35     if len(ths) != 2:
36         sys.exit("lightcards: Headings malformed")
37
38     # Return a tuple of nested lists
39     return ([clean_text(x) for x in ths], outp[1:])
40
41
42 def main(file):
43     return parse_html(md2html(file))
44
45
46 if __name__ == "__main__":
47     print(main(sys.argv[1]))