Python Universe
1.99K subscribers
103 photos
1 video
1 file
55 links
Everything you need to know about Python programming.

Admin: @haraisen
Feedback: @pythontg_feedbackbot
Download Telegram
How to handle messy CSV files 🐍

πŸ”ΈCleverCSV is a Python package for detecting the dialect of CSV files with high accuracy. It is modeled on the way in which a human would determine the dialect: by looking for patterns that result in a regular tabular structure with β€œclean data” in the cells (such as numbers, dates, etc.).

The package is designed to help a data scientist with messy CSV files. It also provides a handy command line tool that can standardize a messy file or generate Python code to import it.

βš™οΈInstallation
pip install clevercsv[full]

πŸ”—GitHub
πŸ”—Docs
πŸ”—[Research] Wrangling Messy CSV Files by Detecting Row and TypePatterns

#clevercsv #csv