Metadata-Version: 2.1
Name: zmazino
Version: 0.0.4
Summary: Modern utils library
Home-page: https://github.com/mazino2d/zmazino
Author: Khoi Dang Do
Author-email: mazino2d@gmail.com
License: MIT
Keywords: utils
Platform: UNKNOWN
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown

### How to query database

```python
>>> from zmazino import MySQL
>>> x  =  MySQL("iotplatform")
>>> x.execute("select * from gps", func = lambda x: print(x))
{'id': 'd0_0', 'timestamp': 1591483446, 'status': 0, 'latitude': 209, 'longtitude': 185}
{'id': 'd0_0', 'timestamp': 1591483450, 'status': 1, 'latitude': 183, 'longtitude': 193}
{'id': 'd0_0', 'timestamp': 1591483483, 'status': 0, 'latitude': 290, 'longtitude': 107}
```

### Author

Khoi Dang Do @ Zalo Group


