I am using the code below to try an extract the data at the table in this URL. However, I get the following error message:
Error: `AttributeError: \'NoneType\' o
There are a lot of issues in your code.
Following line-
table_items = [(a.text, b.text) for ele in data for a, b in [ele.find_all("td")]]
doesnt return just 2 values, so cant assign to a, b