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.3.0.tar.gz
(4.0 kB
view hashes)
Built Distribution
Close
Hashes for csv_utilities-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06eaa89329d907b19891e55760ff15cb3aae41e4e3cef3259f60318f64b539b8 |
|
MD5 | 3db74c0329d1af07709e2baaab87a911 |
|
BLAKE2b-256 | 2c32cfad225b4ef935bf642ec06ec39b06a5e25271bf81a0c4060558c1141b80 |