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: about 1 year ago
JSON representation
use it for small shops or bots to store data in database easily! -- using .csv file format.
- Host: GitHub
- URL: https://github.com/liwyd/pycsv
- Owner: Liwyd
- Created: 2023-08-31T14:10:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-31T14:14:44.000Z (over 2 years ago)
- Last Synced: 2025-01-12T06:48:57.863Z (about 1 year ago)
- Topics: csv, database, database-management, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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