A simple way of working with csv files.
Project description
csvfile
A simple way of working with csv files.
You can use:
data = csvfile.load("my-data.csv")
data[0].field = "new value"
data.sync()
Instead of:
data = []
with open("my-data.csv") as f:
reader = csv.DictReader(f)
fieldnames = reader.fieldnames
for row in reader:
data.append(row)
data[0]["field"] = "new value"
with open("my-data.csv, "w") as f:
writer = csv.DictWriter(f, fieldnames=fieldnames)
writer.writeheader()
writer.writerows(data)
Also you can declaratively define types in a table's header:
>>> print(open("/tmp/csvfile_test.csv").read())
language,created:i
python,1991
js,1995
rust,2010
>>> pprint(csvfile.load("/tmp/csvfile_test.csv"))
[{'created': 1991, 'language': 'python'},
{'created': 1995, 'language': 'js'},
{'created': 2010, 'language': 'rust'}]
Notice, that created is automatically converted into integer as we typed it in
the header as created:i.
Built-in types
| Type | Alias | Comment |
|---|---|---|
| str | s | default, if no type specified |
| bool | b | reader can understand next pairs as True / False case-insensitevely: true / false, t / f, 1 / 0, y / n, yes / no, on / off, but the writer will always stringify them into true / false |
| int | i | |
| float | f | |
| decimal | n | |
| date | d | ISO 8601, YYYY-MM-DD |
| datetime | t | ISO 8601, YYYY-MM-DDTHH:MM:SS.ffffff |
| json | j |
Empty cells will become None for any type except of str.
As in case of str there's no way to distinguish it from an empty string.
API
The api consists in a single function load with the signature:
table = load(
filename: Union[Path, str], # the file should exist and contain headers
*csvargs: Any, # `*args` for the standard `csv.reader`
limit: Optional[int] = None, # maximum number of rows to read
**csvkwargs: Any, # `**fmtparams` for the standard `csv.reader`
)
The returned object has a list interface with an additional sync method to
save changes back into the file.
Running tests
pip install -r requirements-dev.txt
pytest
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file csvfile-3.4.0-py3-none-any.whl.
File metadata
- Download URL: csvfile-3.4.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0abc062fc43f00a3eba0082ca2744d066135e4232993e9f93adcc78e980e0006
|
|
| MD5 |
f39bd2ea5e84199421e9ac60b0f45040
|
|
| BLAKE2b-256 |
7c6b4800c3305e01ae1af9fa933293c1c96ecd51a294012099e6a99856d36d2e
|