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

Function put_success

pywebio/output.py:434–440  ·  view source on GitHub ↗

Output success message. .. seealso:: `put_info()` .. versionadded:: 1.2

(*contents: Any, closable: bool = False, scope: str = None,
                position: int = OutputPosition.BOTTOM)

Source from the content-addressed store, hash-verified

432
433
434def put_success(*contents: Any, closable: bool = False, scope: str = None,
435 position: int = OutputPosition.BOTTOM) -> Output:
436 """Output success message.
437 .. seealso:: `put_info()`
438 .. versionadded:: 1.2
439 """
440 return _put_message(color='success', contents=contents, closable=closable, scope=scope, position=position)
441
442
443def put_warning(*contents: Any, closable: bool = False, scope: str = None,

Callers 1

output_widgetsFunction · 0.85

Calls 1

_put_messageFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…