Skip to main content

A minimalistic solution to messy CSV files.

Project description

tidyCSV.py

CI build mypy tests codecov

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tidycsv-0.1.2.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

tidycsv-0.1.2-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page