sanicdb
sanicdb copied to clipboard
wrapper around aiomysql easy to use for sanic
Results
1
sanicdb issues
Sort by
recently updated
recently updated
newest added
```python from sanic import Sanic from sanic import json from sanic import response from sanicdb import SanicDB app = Sanic('demo') db = SanicDB('0.0.0.0', 'xxx', 'xuyanzhao', 'xxxxx', sanic=app) @app.route('/') async def...