manghat/python-remove-html-from-csv

INFO How run on windows

Closed this issue · 2 comments

You need to install these modules:

  • pandas
  • bs4
  • lxml

example:
python -m pip install bs4

And in code change:
a['clean_bs'] = a['question'].apply(remove_html_escape)
to
a['clean_bs'] = a[col].apply(remove_html_escape)

I have yet to test this. But thank you. Did it work for you?

Have updated the Readme and the code change.

Have updated the Readme and the code change.