hancav's picture
Update app.py
3be476c
raw
history blame
157 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)