Metadata-Version: 2.1
Name: AmhHandler
Version: 1.1.1
Summary: An even better way to work with Python.
Home-page: https://gitee.com/nbyue/amh-handler
Author: nbyue
Author-email: 20671413@163.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

### shell

``` shell
from amhhandler import shell


cmd = "ls /tmp"
result = shell.run(cmd)
print(result)

```

### mysql

``` shell
from amhhandler import mysql


dbconfig = {"host":"127.0.0.1","port":3306, "user":"admin", "password":"123456", "db":"mysql"}

dbHandler = mysql.Conn(**dbconfig)
sql = "select * from mysql.user where user='admin';"
result = dbHandler.select(sql)

```

### ding ding robot


### logging


