parse html document return :: tree of Python object
()
| 14 | return requests.get(url).text |
| 15 | |
| 16 | def transform_data(): |
| 17 | """ parse html document |
| 18 | return :: tree of Python object |
| 19 | """ |
| 20 | return bs(extract_data(),"html.parser") |
| 21 | |
| 22 | |
| 23 | def data_list(soup=transform_data()) -> list: |
no test coverage detected