A simple, no-dependency Python CSV library.
Project description
CSV Utilities
Everyone needs some really basic CSV utilities in Python.
Every once in a while I find I need to write a script in Python to parse a CSV. This could be for taxes, ingesting raw data into a database, or fixing messed-up data.
I needed a way to manipulate CSVs in Python, so I made this library after reinventing the wheel several times. It makes editing and processing CSV data a lot simpler.
Installation
pip install csv-utilites
Basic Usage
from csv_utilities import open_csv
CSV_PATH = '~/Documents/transactions.csv'
transactions = open_csv(CSV_PATH) # Reads the file and creates a CSV object.
transactions.echo() # Prints the CSV to STDOUT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
csv-utilities-0.1.0.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for csv_utilities-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3341915b0af28414a7d7fb1bd28eec52c0671961412a2ff6a0ad6095a5a3fa9a |
|
MD5 | ddba02d13557167569c93c43c334019e |
|
BLAKE2b-256 | af064665282e32c831b9f538c7fd0f0a3ec7274d3f0d008c3830ba883a8e0813 |