Skip to content

gmagannaDevelop/tidyCSV.py

Repository files navigation

tidyCSV.py

CI build mypy tests codecov

PyPI Downloads Code style: black License: MIT experimental

Tired of having pseudo CSV files full of invalid entries ? Me too, this is my solution.

It has probably occurred to you as it has to me to get this error when reading a csv into Python using pandas.

ParserError: Error tokenizing data. C error: Expected 8 fields in line 7, saw 47

This happens because some lines in your file have more columns than you have in the header, or simply other kind of inconsistencies such as intermediate blank lines or lines containing random tokens.

Fear no more because tidyCSV provides a simple and clear interface to access the semantically coherent chunks of your csv file (if there are any). By default it selects the biggest group found (that is the one containing the most lines).

Maybe I'll add an option to select how many columns you expect, in order to filter the groups according to a preconceived criteria. Eventually I would like this project to become a command line tool as well as having a richer set of features, but It currently serves its purpose so it is not a priority.

Installation

The package has been published to PyPI! You can install it as any other package using pip (I recommend installing it within a virtual environment created in a per project basis).

pip install tidycsv

Otherwise you can install the latest development version using:

pip install git+https://github.com/gmagannaDevelop/tidyCSV.py

Usage

Use the context manager provided at top-level to read an otherwise unreadable csv as follows:

import pandas as pd
from tidycsv import TidyCSV as tidycsv

with tidycsv("your-messy-csv-file.csv") as tidy:
	df = pd.read_csv(tidy)

Now you have a dataframe ready to be used instead of an Exception.

Bugs and feature requests

If you find that tidyCSV is not behaving as you would expect it to, please feel free to open an issue. The same goes for feature requests.

About

Tired of having pseudo CSV files full of invalid entries ? Me too, this is my solution.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages