Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bytecurdler/csvplus

A wrapper for the default `csv` library.
https://github.com/bytecurdler/csvplus

csv python3 wrapper

Last synced: about 1 month ago
JSON representation

A wrapper for the default `csv` library.

Awesome Lists containing this project

README

        

# CSV+
A wrapper for the default `csv` library.
## Usage
```python3
import csvPlus as csv
csv.read(open("example.csv"), headers=True)
csv.write(open("example.csv", "w"), data=somedata)