DEBSOURCES
Skip Quicknav
sources / python-ajsonrpc / 1.2.0-1 / examples / methods.py
1234567891011
import asyncio def echo(s='pong'): return s def mul2(a, b): return a * b async def say_after(delay, what): await asyncio.sleep(delay) return what