I’d like to take an HTML table and parse through it to get a list of dictionaries. Each list element would be a dictionary corresponding to a row in the table.
If, for example, I had an HTML table with three columns (marked by header tags), “Event”, “Start Date”, and “End Date” and that table had 5 entries, I would like to parse through that table to get back a list of length 5 where each element is a dictionary with keys “Event”, “Start Date”, and “End Date”.
Thanks for the help!
You should use some HTML parsing library like
lxml:prints