sym.sdk.integrations.store.put¶ sym.sdk.integrations.store.put(path: str, value: Any)¶ Puts a namespaced value into the key-value store. Namespaces can be nested with dot notation. e.g. put(“users.titles.alice”, “manager”) Note This function is currently in private beta. Please reach out if you’d like to test it. Parameters path (str) – A string in dot notation representing a nested namespace. value – Any serializable value to store. Raises KeyError – If a non-namespace object has already been set at a non-leaf node of path.