14 lines
206 B
Python
14 lines
206 B
Python
# coding:utf-8
|
|
|
|
import asyncio
|
|
|
|
|
|
async def run():
|
|
from db import ck_client
|
|
res = await ck_client.query_dataframe('show databases')
|
|
print(res)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(run())
|