MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / coro_background_input

Function coro_background_input

test/template.py:578–587  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

576
577
578async def coro_background_input():
579 async def background():
580 await asyncio.sleep(1)
581 res = await input('background')
582 put_markdown(f'`background: {repr(res)}`')
583
584 run_async(background())
585
586 res = await input('front')
587 put_markdown(f'`front: {repr(res)}`')
588
589
590async def flask_coro_background_input():

Callers

nothing calls this directly

Calls 4

run_asyncFunction · 0.85
backgroundFunction · 0.85
inputFunction · 0.85
put_markdownFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…