MCPcopy Create free account
hub / github.com/streamlit/streamlit / items

Method items

lib/streamlit/runtime/secrets.py:629–631  ·  view source on GitHub ↗

A view of the key-value items in the dict. Thread-safe.

(self)

Source from the content-addressed store, hash-verified

627 return self._parse().values()
628
629 def items(self) -> ItemsView[str, Any]:
630 """A view of the key-value items in the dict. Thread-safe."""
631 return self._parse().items()
632
633 def __contains__(self, key: Any) -> bool:
634 """True if the given key is in the dict. Thread-safe."""

Callers 15

serialize_mixed_dataFunction · 0.45
deserializeMethod · 0.45
_bidi_componentMethod · 0.45
create_instanceMethod · 0.45
_lower_clean_dict_keysFunction · 0.45
validate_menu_itemsFunction · 0.45
_navigationFunction · 0.45

Calls 1

_parseMethod · 0.95

Tested by

no test coverage detected