Spaces:
Paused
Paused
Commit ·
6b445cd
1
Parent(s): 7493436
Update.app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import deepl
|
| 2 |
import streamlit as st
|
| 3 |
|
|
|
|
| 4 |
LANGUAGES = {"英語": "EN", "日本語": "JA"}
|
| 5 |
|
| 6 |
|
|
@@ -12,7 +13,7 @@ def deepl_translate(text, src_lang="JA", target_lang="EN"):
|
|
| 12 |
|
| 13 |
|
| 14 |
def main():
|
| 15 |
-
st.title("Deepl
|
| 16 |
main_container = st.container()
|
| 17 |
|
| 18 |
left_col, right_col = main_container.columns(2)
|
|
|
|
| 1 |
import deepl
|
| 2 |
import streamlit as st
|
| 3 |
|
| 4 |
+
# 自由に書き換えて使いましょう!
|
| 5 |
LANGUAGES = {"英語": "EN", "日本語": "JA"}
|
| 6 |
|
| 7 |
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
def main():
|
| 16 |
+
st.title("Deepl-ce")
|
| 17 |
main_container = st.container()
|
| 18 |
|
| 19 |
left_col, right_col = main_container.columns(2)
|