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

https://github.com/bytecurdler/csvplus

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

csv python3 wrapper

Last synced: 5 months 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)