刀尖红叶

Results 10 comments of 刀尖红叶

Hope support timezone feature~

这个pr合并了吗?

@mcastorina thx, since matplotlib doesn't support webp now, hope it could support later~

@Askaholic with Python 3.7's new feature--`asyncio.run(), asyncio.create_task(), asyncio.gather()`, async syntax is simple and elegant, for example: ``` import pendulum import asyncio async def test(name): print(f'Begin:{name} {pendulum.now()}') await asyncio.sleep(2) print(f'End:{name} {pendulum.now()}')...

@leafonsword aiomysql's document doesn't have `asyncio.run(), asyncio.create_task(), asyncio.gather()` syntax example, just this: ``` import asyncio import aiomysql loop = asyncio.get_event_loop() @asyncio.coroutine def test_example(): conn = yield from aiomysql.connect(host='127.0.0.1', port=3306, user='root',...

@asvetlov I'm still learning asyncio, after I dive into async syntax, I will try to using `asyncio.run(), asyncio.create_task(), asyncio.gather()` with aiomysql, and push a pr

Hope support file text serarch~

@dbaty Thanks for explaination, I think using `configparser` is a better solution that compatible with psql.