hancav's picture
Create app.py
457cb18
raw
history blame
175 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.json(out)