yuanxu-li / html-table-extractor

extract data from html table
MIT License
84 stars 23 forks source link

Extract as a list of dictionaries #5

Open lucasa opened 7 years ago

lucasa commented 7 years ago

Would be a good feature to extract the the rows as a dict, at least from simple tables. Example: | A | B | C | | 1 | 2 | 3 | ... Generating a list of dicts: [{A:1, B:2, C:3}, ...]