Awesome-Python-Scripts/HTML_Table_to_List/README.md

10 lines
435 B
Markdown
Raw Normal View History

2018-10-14 18:48:56 +00:00
# HTML Table to Python List of List Converter
A simple tool which takes a HTML table as string, and converts it to python list of list data structure and returns the same.
## Libraries Required
1. Beautiful Soap
2019-10-05 16:14:59 +00:00
`$pip install beautifulsoup4`
2018-10-14 18:48:56 +00:00
## Usage
2019-10-05 16:14:59 +00:00
A sample script `html_table_to_list_usage.py` has been provided to show the usage of the HTMLTableToList. It takes a string of html table, and prints the corresponding list of list.