Ecosyste.ms: Awesome
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: about 1 month ago
JSON representation
A wrapper for the default `csv` library.
- Host: GitHub
- URL: https://github.com/bytecurdler/csvplus
- Owner: ByteCurdler
- Created: 2020-02-21T00:08:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T00:09:00.000Z (almost 5 years ago)
- Last Synced: 2023-09-30T05:51:11.143Z (about 1 year ago)
- Topics: csv, python3, wrapper
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)