DEV Community

Nishant Mittal
Nishant Mittal

Posted on

How to clean scraped data?

Is there a python library which can help to clean the data I got after scraping?

Oldest comments (1)

Collapse
 
saswat01 profile image
saswat • Edited

I think it depends on what type of thing you want to clean in your data. If it is unwanted text or symbols which occur at a specific position multiple times you may consider string manipulation. If anything else(and including the above mentioned problem) you can always use Regex.