File size: 175 Bytes
457cb18
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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.json(out)