hancav's picture
Update app.py
6b48441
raw
history blame
179 Bytes
import streamlit as st
from langdetect import detect
text = st.text_area('Please enter some text for language detection !!')
if text:
out = detect(text)
st.text_area(out)