streamlit

Форк
0
/
streamlit_static_app.py 
38 строк · 1.2 Кб
1
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024)
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
5
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14

15
import streamlit as st
16
from streamlit import runtime
17

18
st.header("Main Page with static files")
19

20
if not st.get_option("server.enableStaticServing"):
21
    st.error(
22
        """
23
        **ERROR**. This test needs to be run with `--server.enableStaticServing`, like
24
        this:
25

26
        ```
27
        streamlit run
28
            e2e/scripts/staticfiles_apps/streamlit_static_app.py
29
            --server.enableStaticServing=true
30
        ```
31
    """
32
    )
33

34
elif runtime.exists():
35
    """Static files serving works only when runtime exists"""
36
    st.markdown(
37
        "![Streamlit](http://localhost:8501/app/static/streamlit-mark-color.png)"
38
    )
39

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.