Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/liwyd/pycsv

use it for small shops or bots to store data in database easily! -- using .csv file format.
https://github.com/liwyd/pycsv

csv database database-management python

Last synced: 4 days ago
JSON representation

use it for small shops or bots to store data in database easily! -- using .csv file format.

Awesome Lists containing this project

README

        

# CSV db Manager
## How To Install
```
git clone https://github.com/Liwyd/pycsv.git
```

## How To Use
- Import dManager in your .py file
```python
from dManager import Managedb

user1 = Managedb('123456789', 'users.csv')
user1.ADD_user()
user1.READ_info(2)
user1.CHANGE_info(2,1000)
user1.ADD_info(2, 500)
```

- Result in 'users.csv':
```
123456789,0,1500,0,0,2,1,3
```

- you can change the defult values of each new user at line 35