File size: 348 Bytes
5652266
c01079c
5652266
 
 
 
c01079c
5652266
 
 
c01079c
5652266
c01079c
5652266
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os
import subprocess
import streamlit as st

# Set up the environment (if needed)
os.environ["PYTHONUNBUFFERED"] = "1"

# Run the Gojo_Satoru bot from Powers module
def run_bot():
    subprocess.run(["python3", "-m", "Powers"])

st.title("Telegram Bot")

if st.button("Start flash Bot"):
    run_bot()
    st.success("flash Bot is running!")