28
Any trick to read large Wikipedia "Comparison of..." tables?
(discuss.tchncs.de)
A place to discuss the news and latest developments on the open-source browser Firefox.
1. Adhere to the instance rules
2. Be kind to one another
3. Communicate in a civil manner
If you would like to bring an issue to the moderators attention, please use the "Create Report" feature on the offending comment or post and it will be reviewed as time allows.
Don't know how techy you are, but I've had some luck with using pandas for stuff like this, though I don't know how good it works on wikipedia.
https://pandas.pydata.org/docs/reference/api/pandas.read_html.html
You can either do the filtering directly on the resulting pandas datframes or export it to whatever format you like including excel or csv
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_excel.html
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_csv.html