This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import threading | |
from concurrent import futures | |
import streamlit as st | |
def create_async_loop(): | |
print("CREATE_ASYNC_LOOP START") | |
loop = asyncio.new_event_loop() | |
st.session_state.event_loop = loop |