/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
e2e_playwright/st_json.py
105 строк
3 KB
Ken McGrady
Update copyright header to 2026 (#13491)
02 янв 2026, 16:21
Не верифицирован
02 янв 2026, 16:21
374540a
Код
Авторство
О чём код?
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import streamlit as st st.subheader("Simple dict:") st.json({"foo": "bar"}) st.subheader("Collapsed") st.json({"foo": "bar"}, expanded=False) st.subheader("Keep whitespaces:") st.json({"Hello World": "Foo Bar"}) st.subheader("Complex dict:") st.json( { "array": [1, 2], "boolean": True, "null": None, "integer": 123, "float": 123.45, "object": {"a": "b", "c": "d"}, "string": "Hello World", } ) st.subheader("Simple List:") st.json(["a", "b"]) st.subheader("Empty dict:") st.json({}) st.subheader("Expand to depth of 2:") st.json( { "level1": { "level2": {"level3": {"a": "b"}}, "c": "d", "list": [{"list_item": "value"}], }, "string": "Hello World", }, expanded=2, ) st.subheader("Width tests:") st.json( { "width": "stretch", "description": "This JSON element will stretch to fill the container width", "nested": { "level1": { "level2": { "level3": { "a": "This is a very long string that should wrap when the width is set to stretch", "b": "Another long string to demonstrate wrapping behavior", } } } }, }, width="stretch", ) st.json( { "width": 300, "description": "This JSON element has a fixed width of 300 pixels", "nested": { "level1": { "level2": { "level3": { "a": "This is a very long string that should not wrap when the width is fixed", "b": "Another long string to demonstrate fixed width behavior", } } } }, }, width=300, ) st.subheader("Keeps container bounds:") col1, col2 = st.container(key="container_with_json").columns(2) with col1.container(border=True): st.json( { "foo": "a" * 100, "bar": "this is a very long string that will not fit in the column and will cause it to wrap", } )