Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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]
)
```