2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

StreamlitAdvent Calendar 2024

Day 18

Streamlitで風船を飛ばそう、雪を降らそう(st.balloons(), st.snow())

Posted at

Streamlitとは

Streamlitは、データサイエンスや機械学習のためのダッシュボードWebアプリケーションを簡単に構築できるPythonのライブラリです。
ただ、Streamlitで単にデータを可視化したりアプリを動かしたりするのに飽きたあなた。風船を飛ばしたり雪を降らせたりしてみませんか。
あなたのダッシュボードやアプリケーションが一段と魅力的なものに変わるでしょう。

絶対に使いたい、st.balloons()st.snow()を紹介します。

サンプルアプリ

サンプルアプリはこちら

st.balloons()とst.snow()の紹介

  • st.balloons(): 風船を飛ばす関数
  • st.snow(): 雪を降らす関数

実装例

import streamlit as st

st.title(":streamlit:")

col1_1, col1_2 = st.columns(2)

with col1_1:
    st.header("balloons")
    if st.button("風船を飛ばす"):
        st.balloons()

with col1_2:
    st.header("snow")
    if st.button("雪を降らす"):
        st.snow()

おまけ:Streamlitのアイコンを表示させる

バージョン1.40.0からは、Streamlitのアイコンを表示させることができるようになりました。
Markdownで使うことができます。

:streamlit:logo.png

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?