Metadata-Version: 2.1
Name: quick-csv
Version: 0.0.1a0
Summary: Quickly reading and writing CSV/TXT files
Home-page: UNKNOWN
Author: Donghua Chen
Author-email: douglaschan@126.com
License: MIT
Keywords: csv file,read csv,write csv,quick-csv,quickcsv
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
License-File: LICENSE

## Quick CSV

Quickly reading and writing CSV/TXT files

### Installation
```pip
pip install quick-csv
```

### Usage

```python
from quickcsv.file import *
# read a csv file
list_model=qc_read('data/test.csv')
for idx,model in enumerate(list_model):
    print(model)
    list_model[idx]['id']=idx
# save a csv file
qc_write('data/test1.csv',list_model)

# write a text file
qc_twrite('data/text1.txt',"Hello World!")
# read a text file
print(qc_tread('data/text1.txt'))
```

### License

The `quick-csv` project is provided by [Donghua Chen](https://github.com/dhchenx). 



