Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bryanyang0528/mysqltoolkit
A Python wrapper for simplify MySQL commends.
https://github.com/bryanyang0528/mysqltoolkit
Last synced: 1 day ago
JSON representation
A Python wrapper for simplify MySQL commends.
- Host: GitHub
- URL: https://github.com/bryanyang0528/mysqltoolkit
- Owner: bryanyang0528
- Created: 2020-03-20T10:18:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T19:34:02.000Z (6 months ago)
- Last Synced: 2024-10-11T15:46:52.174Z (about 1 month ago)
- Language: Python
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MySQLToolkits
A mix toolkits for MySQL.
## Usage
```python
from mysqltoolkit import Client
client = Client(
host='my_host',
user='user',
port=3306,
password='passwd',
db='mydb'
)
client.insert(
table='table1',
fields=['field1', 'field2', 'field2'],
data=[1, 2, 3]
)
```