Spaces:
Runtime error
Runtime error
File size: 23,909 Bytes
cde59b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 |
import streamlit as st
import zipfile, shutil, time
import os
import hashlib
#from streamlit_pdf_viewer import pdf_viewer
from streamlit import runtime
from streamlit.runtime.scriptrunner import get_script_run_ctx
from streamlit_js_eval import streamlit_js_eval
import secrets
import threading
from streamlit.runtime.scriptrunner import add_script_run_ctx
#import streamlit.components.v1 as components
from streamlit.runtime import get_instance
#from pypdf import PdfReader
import fitz
import glob
import logging
def get_remote_ip() -> str:
"""Get remote ip."""
try:
ctx = get_script_run_ctx()
if ctx is None:
return None
session_info = runtime.get_instance().get_client(ctx.session_id)
if session_info is None:
return None
except Exception as e:
return None
return session_info.request.remote_ip
# colab side make dir
def my_makedirs(path):
if not os.path.isdir(path):
os.makedirs(path)
def heart_beat():
"""
Heartbeat function to track whether the session is alive
"""
thread = threading.Timer(interval=5, function=heart_beat)
# insert context to the current thread, needed for
# getting session specific attributes like st.session_state
add_script_run_ctx(thread)
# context is required to get session_id of the calling
# thread (which would be the script thread)
ctx = get_script_run_ctx()
# this is the main runtime, contains all the sessions
runtime = get_instance()
if runtime.is_active_session(session_id=ctx.session_id):
logging.info(f"{ctx.session_id} is alive.")
thread.start()
else:
if 'uniq' in st.session_state:
if os.path.isdir(f"removefolder/{st.session_state.uniq}"):
shutil.rmtree(f"removefolder/{st.session_state.uniq}")
logging.info(f"{ctx.session_id} is gone.")
return
# JavaScript to detect browser exit
EXIT_JS = """
<script>
window.addEventListener('beforeunload', function (event) {
fetch('/close_session', {method: 'POST'}).then(response => {
return response.text();
}).then(data => {
console.log(data);
});
});
</script>
"""
# Embed the JavaScript in the Streamlit app
#components.html(EXIT_JS)
streamlit_js_eval(js_expressions = EXIT_JS)
def main():
if 'uniq' not in st.session_state:
st.session_state.uniq = secrets.token_urlsafe()
temp_dir = st.session_state.uniq
my_makedirs(f"removefolder/{temp_dir}")
flag = True
if 'count' not in st.session_state:
st.session_state.count = 0
#tempolary
if 'temp' not in st.session_state:
st.session_state.temp = 0
if 'lang' not in st.session_state:
st.session_state.lang = ""
if 'result' not in st.session_state:
st.session_state.result = ""
apptitle = st.empty()
langs = st.empty()
description = st.empty()
obj_0 = st.empty()
obj_1 = st.empty()
apptitle.header("PDF file Translator π", divider="violet")
langs.write('This App can translate to <`Japanese`, `English`, `French`, `Chinese (traditional)`, `Chinese (simplified)`, `Russian`, `Korean`, `Vietnamese`, `Thai`, `Catalan`, `Sinhalese`, `Nepall`>')
description.write("""
It's easy to use.:black_cat: Just upload, select the language, and download the resulting .zip file.:package:
After uploading a PDF file and selecting the translation language, you can wait a while.
The original text, the original text and translation (a few lines of the original text followed by the translation) and the translation text will be compressed into a zip file and available for download.
When you press the download button, the compressed file will be downloaded, and if you select another translation language, the process will be repeated.:leftwards_arrow_with_hook:
:koala: The uploaded PDF file data will disappear <u>when you close the browser tab</u>. :eyes:
**Only PDF files can be uploaded.**
This translation app is useful for people who want to translate something or want to read something but cannot read it unless it is translated, and who want to quickly check the original text and the translation by comparing them in pairs. :yin_yang:
:full_moon_with_face: Even if the PDF file has many pages, there is no limit to the number of pages or characters.
<u>The untranslated data will be retained until the browser is closed, but once the app page is closed, the connection will be cut off and the data will be deleted.</u> :thought_balloon:
#### FAQ :coffee:
:baby: **Q** : Does the translated text have information about line breaks and paragraphs? :coffee:
:robot_face: **A** : Line breaks and paragraphs are not reflected in the translated text.
The text extracted from the original text has the same position indexed with `:::info` as the translated text.
Regardless of the contents of the uploaded PDF or document, counting starts from zero and you can see which page or sentence you are in.
The original text has an `π°` : elephant mark after `:::info`, which are unicode characters representing Egyptian hieroglyphics.
π°00001-0;
Similarly, the translation of the original text is followed by a `π` : frog mark.
π00001-0;
:teapot: **Tips** : If you have a text editor with a pattern replacement function,
you can use the characters starting with
`:::info`
and ending with the line that contains only
`:::`
as a pattern to remove.
Try searching Google for keywords such as `grep and replace`.
""", unsafe_allow_html=True)
obj_0.success("PDF file uploader")
# st.markdown(f"The remote ip is `{get_remote_ip()}`")
uploaded_file = obj_1.file_uploader("UPLOAD your .pdf file", type="pdf")
####
if uploaded_file is not None:
flag = False
st.success("PDF file translator")
# hashed
raw_filename = uploaded_file.name
intext_0 = f'<span style="color:LavenderBlush;background:Orchid"> {raw_filename} </span>'
st.write(intext_0, unsafe_allow_html=True)
hashed_filename = hashlib.sha1(raw_filename.encode())
uploadedfilename = hashed_filename.hexdigest()
if "uploadedfilename" not in st.session_state:
st.session_state.uploadedfilename = uploadedfilename
if "book" not in st.session_state:
#pdf_viewer(input=uploaded_file.getvalue(), width=700, height=500)
my_makedirs(
f"removefolder/{temp_dir}/upload_folder_{st.session_state.count}"
)
with open(
f'removefolder/{temp_dir}/upload_folder_{st.session_state.count}/{uploadedfilename}.pdf',
'wb') as file:
file.write(uploaded_file.getvalue())
# pdf_viewer(input=f'{temp_dir}/upload_folder_{st.session_state.count}/{uploadedfilename}.pdf', width=700, height=500)
# read from PDF file
PDF = glob.glob(
f"removefolder/{temp_dir}/upload_folder_{st.session_state.count}/{uploadedfilename}.pdf"
)
#doc = PdfReader(PDF[0])
doc = fitz.open(PDF[0])
# meta = doc.metadata
#page_count = len(doc.pages)
page_count = len(doc)
book = [] # PDF text data pool
progressbar1 = st.empty()
my_bar1 = progressbar1.progress(0)
from bs4 import BeautifulSoup
for index, page in enumerate(doc):
#page_text = page.extract_text()
#page_text = page.get_text(sort=True)
blocks = page.get_text("xml")
soup = BeautifulSoup(blocks,'lxml-xml')
page_text2 = ""
for tag0 in soup.find_all("block"):
temp_y_posi = 0.0
for tag1 in tag0.find_all("line"):
for tag2 in tag1.find_all("font"):
for tag3 in tag2.find_all("char"):
y_posi = tag3.get("y")
if y_posi != temp_y_posi:
page_text2 += "\n"
temp_y_posi = y_posi
page_text2 += tag3.get("c")
page_text2 += "\n\n"
#for index, page in enumerate(doc.pages):
#for index, page in enumerate(doc):
# #page_text = page.extract_text()
# page_text = page.get_text(sort=True)
# book.append((index, page_text))
book.append((index, page_text2))
done = int(((index + 1) / page_count) * 100)
my_bar1.progress(done,
text=f"Reading Page Number : {index + 1}")
doc.close()
st.session_state.book = book
my_bar1.empty()
if os.path.isfile(
f"removefolder/{temp_dir}/upload_folder_{st.session_state.count}/{uploadedfilename}.pdf"
):
shutil.rmtree(
f"removefolder/{temp_dir}/upload_folder_{st.session_state.count}/"
)
########
reload_bt = st.empty()
if reload_bt.button("Upload another PDF file"):
for key in st.session_state.keys():
if key == "count" or key == "temp" or key == "lang":
continue
else:
del st.session_state[key]
shutil.rmtree(f"removefolder/{temp_dir}")
# page reload
streamlit_js_eval(js_expressions="parent.window.location.reload()")
st.markdown("----")
plain_text1 = " π select target language π "
var_text1 = f'##### <span style="color:green">{plain_text1}</span>'
select = st.empty()
select.write(var_text1, unsafe_allow_html=True)
# select language
st.markdown("""
`ja`: **Japanese**,
`en`: **English**,
`fr`: **French**,
`zb-TW`: **Chinese (traditional)**,
`zh-CN`: **Chinese (simplified)**,
`ru`: **Russian**,
`ko`: **Korean**,
`vi`: **Vietnamese**,
`th`: **Thai**,
`tl`: **Tagalog**,
`ca`: **Catalan**,
`si`: **Sinhalese**,
`ne`: **Nepall**
""")
lang_code = [
"select language",
"Japanese",
"English",
"French",
"Chinese traditional",
"Chinese simplified",
"Russian",
"Korean",
"Vietnamese",
"Thai",
"Tagalog",
"Catalan",
"Sinhalese",
"Nepall"
]
sel = st.empty()
language = sel.radio(
label='translate to',
options=lang_code,
index=0,
key = f"select_lang{st.session_state.count}",
horizontal=True)
#language = sel.selectbox(
# 'translate to',
# lang_code,
# index=0,
# #placeholder = "select language",
# key=f"select_lang{st.session_state.count}")
statename = f"select_lang{st.session_state.count}"
if "target_lang" not in st.session_state:
st.session_state.target_lang = "UNSELECTED"
def reset_selected_lang():
st.session_state[statename] = "select language"
st.button('Reset Language', on_click=reset_selected_lang)
area = st.empty()
if flag:
if "select_lang" in st.session_state:
if st.session_state.select_lang != "select language":
area2 = st.empty()
plain_text2 = "βReset Languageβ"
empty_text = "β β"
var_text2 = f'<span style="color:#FF69B4">{plain_text2}</span>'
while flag:
area2.write(var_text2, unsafe_allow_html=True)
time.sleep(0.9)
area2.write(empty_text)
time.sleep(0.5)
while flag:
area.text("π€ upload PDF file π€")
time.sleep(1)
area.text("π₯ π₯")
time.sleep(0.8)
else:
if f"select_lang{st.session_state.count}" in st.session_state:
statename = f"select_lang{st.session_state.count}"
if st.session_state[statename] != "select language":
plain_text2 = "Reset Language"
var_text2 = f'<span style="color:gray">β² `{plain_text2}`</span>'
area.write(var_text2, unsafe_allow_html=True)
obj_0.empty()
obj_1.empty() # uploader hide
# pdf translator
#------------------------------------------
st.markdown("----")
st.success("translator")
if "book" in st.session_state:
book_data = st.session_state.book
page_count = len(book_data)
else:
page_count = 0
st.text(f"PDF total pages : {page_count}")
progressbar = st.empty()
my_bar = progressbar.progress(0)
#3
# from google.colab import output
import re
#from googletrans import Translator
from deep_translator import GoogleTranslator
title_name = re.sub("\.| |%|@|\"|\'", "_", f"{uploaded_file.name}")
if st.session_state.temp != int(st.session_state.count):
st.session_state.lang = "init"
st.session_state.temp = int(st.session_state.count)
if language not in lang_code[1:]:
language = None
if st.session_state.lang != language and language is not None:
st.session_state.count += 1
st.session_state.result = ""
st.session_state.lang = language
description.empty()
my_makedirs(
f"removefolder/{temp_dir}/work_{st.session_state.count}")
to = ""
match language:
case "Japanese":
to = "ja"
case "English":
to = "en"
case "French":
to = "fr"
case "Chinese traditional":
to = "zh-TW"
case "Chinese simplified":
to = "zh-CN"
case "Russian":
to = "ru"
case "Korean":
to = "ko"
case "Vietnamese":
to = "vi"
case "Thai":
to = "th"
case "Tagalog":
to = "tl"
case "Catalan":
to = "ca"
case "Sinhalese":
to = "si"
case "Nepall":
to = "ne"
case _:
to = "unknown"
st.info(f"translate to [ {language} ]")
st.session_state.target_lang = to
with st.container():
work_area1 = st.empty()
work_area2 = st.empty()
#--------------------------------------
for index, page in enumerate(book_data):
page_text = page[1]
# print("\nPage Number:" + str(index))
done = int(((index + 1) / page_count) * 100)
my_bar.progress(done,
text=f"Working Page Number : {index + 1}")
# print(len(page_text))
# text_list = [s for s in page_text.split('\n') if s]
page_text = re.sub('\.', '.π', page_text)
text_list = [s for s in page_text.split('π')]
if len(text_list) < 1:
continue
limit = 0
temp_list = []
line_number = []
for n, line in enumerate(text_list):
line2 = re.sub(r"\s+", " ", line)
if line2 == "":
continue
temp_list.append((n, line2))
if len(temp_list) == 14 or n == len(text_list) - 1:
text_ = ""
all_text_orig = ""
all_text_done = ""
for i, t in enumerate(temp_list):
if t[1] != " ":
line_number.append(t[0])
text_ += 'π' + t[1].strip()
temp_list.clear()
text_2 = text_
text_ = re.sub('π', "", text_)
#while (re.search('π', text_2)):
# num = line_number.pop(0)
# rep_words = f"πNO:{num}| "
# text_2 = text_2.replace('π', rep_words, 1)
line_number.clear()
# print(re.sub("π","\n", text_2))
#ts = Translator()
all_text_orig = f":::info\nπ°{index + 1:05d}" + f"-{n}" + f";\n:::\n{text_}\n"
for times in range(0, 5):
try:
tsd = GoogleTranslator(
source="auto",
target=to).translate(text=text_)
if tsd == None:
tsd = text_
#tsd = ts.translate(text_, src="en", dest="ja")
#translated_text = ts.translate(line, src="en", dest="ja").text
all_text_done = f":::info\nπ{index + 1:05d}" + f"-{n}" + f";\n:::\n{tsd}\n"
#all_text_done = f"**{index:05d}" + f"-{n}" + "; " + tsd.text + "\n"
# all_text_orig += str(n) + "; " + tsd.pronunciation + "\n"
# print(index,n, line)
# print(index,n, tsd.text)
# print(all_text_orig)
# print(all_text_done + "\n")
if type(all_text_orig) is str and type(
all_text_done) is str:
# intext_1 = f'<span style="color:DimGray;background:GhostWhite">{all_text_orig}</span>'
# work_area1.markdown(intext_1, unsafe_allow_html=True)
work_area1.write(f"{all_text_orig}")
# intext_2 = f'<span style="color:LavenderBlush;background:Gray">{all_text_done}</span>'
work_area2.write(f"{all_text_done}")
# work_area2.markdown(intext_2, unsafe_allow_html=True)
with open(
f"removefolder/{temp_dir}/work_{st.session_state.count}/reuseMarkdown.txt",
"a") as tempf:
tempf.write(all_text_orig + "\n\n" +
all_text_done + "\n\n")
# st.session_state.result += all_text_orig + "\n\n"
# st.session_state.result += all_text_done + "\n\n"
# print(n, tsd.pronunciation)
with open(
f"removefolder/{temp_dir}/work_{st.session_state.count}/{title_name}_done.txt",
"a") as f:
f.write(all_text_orig + all_text_done +
"\n")
with open(
f"removefolder/{temp_dir}/work_{st.session_state.count}/{title_name}_done_{language}.txt",
"a") as f:
f.write(all_text_done + "\n")
break
except Exception as e:
print(e)
time.sleep(3)
continue
with open(
f"removefolder/{temp_dir}/work_{st.session_state.count}/{title_name}_orig.txt",
"a") as f:
f.write(all_text_orig + "\n")
st.markdown("----")
my_makedirs(f"removefolder/{temp_dir}/download_section")
shutil.move(
f"removefolder/{temp_dir}/work_{st.session_state.count}/reuseMarkdown.txt",
f"removefolder/{temp_dir}/download_section/reuseMarkdown_{st.session_state.count}.txt"
)
shutil.make_archive(
f'removefolder/{temp_dir}/download_section/{st.session_state.uploadedfilename}_{st.session_state.count}',\
format='zip',\
root_dir=f'removefolder/{temp_dir}/work_{st.session_state.count}'\
)
shutil.rmtree(
f"removefolder/{temp_dir}/work_{st.session_state.count}")
st.balloons()
work_area1.empty()
work_area2.empty()
#--------------------------------------
st.success("Download translated text files")
st.write(intext_0, unsafe_allow_html=True)
# plain_text3 = f"[ {st.session_state.target_lang} ] : translated text files"
plain_text3 = f"[ {language} ] : translated text files"
var_text3 = f'##### <span style="color:#FF69B4">{plain_text3}</span>'
translated = st.empty()
translated.write(var_text3, unsafe_allow_html=True)
if os.path.isfile(
f'removefolder/{temp_dir}/download_section/{st.session_state.uploadedfilename}_{st.session_state.count}.zip'
):
with open(
f"removefolder/{temp_dir}/download_section/{st.session_state.uploadedfilename}_{st.session_state.count}.zip",
"rb") as fpath:
btn = st.download_button(
label=f"DOWNLOAD .zip file",
data=fpath,
file_name=
f"{st.session_state.uploadedfilename}_{st.session_state.count}.zip",
mime="application/zip")
plain_text4 = "download zipfile"
var_text4 = f'<span style="color:gray">β² `{plain_text4}` π </span>'
st.write(var_text4, unsafe_allow_html=True)
st.markdown("----")
plain_text5 = " π‘ results π "
var_text5 = f'##### <span style="color:#20B2AA">{plain_text5}</span>'
st.write(var_text5, unsafe_allow_html=True)
tempf = open(
f"removefolder/{temp_dir}/download_section/reuseMarkdown_{st.session_state.count}.txt"
)
all_result = tempf.read()
tempf.close()
st.write(intext_0, unsafe_allow_html=True)
st.write(all_result, unsafe_allow_html=True)
# st.write(st.session_state.result, unsafe_allow_html=True)
if __name__ == "__main__":
heart_beat()
main() |