MCPcopy Create free account
hub / github.com/zappa/Zappa / get_func_task_path

Function get_func_task_path

zappa/asynchronous.py:467–473  ·  view source on GitHub ↗

Format the modular task path for a function via inspection.

(func)

Source from the content-addressed store, hash-verified

465
466
467def get_func_task_path(func):
468 """
469 Format the modular task path for a function via inspection.
470 """
471 module_path = inspect.getmodule(func).__name__
472 task_path = "{module_path}.{func_name}".format(module_path=module_path, func_name=func.__name__)
473 return task_path
474
475
476def get_async_response(response_id):

Callers 4

test_nofails_funcsMethod · 0.90
runFunction · 0.85
func_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_nofails_funcsMethod · 0.72