Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/liwyd/pycsv
- Owner: Liwyd
- Created: 2023-08-31T14:10:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-31T14:14:44.000Z (over 1 year ago)
- Last Synced: 2024-11-13T01:32:33.937Z (2 months ago)
- Topics: csv, database, database-management, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- 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 Managedbuser1 = 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