MCPcopy Index your code
hub / github.com/pyscript/pyscript / append

Method append

core/src/stdlib/pyscript/web.py:1437–1443  ·  view source on GitHub ↗

Append items to the page `body`. Shortcut for `page.body.append(*items)`.

(self, *items)

Source from the content-addressed store, hash-verified

1435 document.title = value
1436
1437 def append(self, *items):
1438 """
1439 Append items to the page `body`.
1440
1441 Shortcut for `page.body.append(*items)`.
1442 """
1443 self.body.append(*items)
1444
1445 def find(self, selector):
1446 """

Callers 15

onReadyFunction · 0.45
add_listenerMethod · 0.45
appendMethod · 0.45
__init__Method · 0.45
downloadMethod · 0.45
_create_element_classesFunction · 0.45
create_named_workerFunction · 0.45
_write_to_domFunction · 0.45
_array_keysFunction · 0.45
_object_keysFunction · 0.45
_indexFunction · 0.45
_refFunction · 0.45

Calls

no outgoing calls