Spaces:
Runtime error
Runtime error
Commit
·
b685471
1
Parent(s):
4290924
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,14 @@ import tempfile
|
|
3 |
import os
|
4 |
import pyperclip
|
5 |
from langchain.document_loaders import UnstructuredFileLoader
|
|
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
def main():
|
9 |
st.title("PDF Text Extractor")
|
@@ -25,9 +32,12 @@ def main():
|
|
25 |
txt += item.page_content
|
26 |
text_content = txt
|
27 |
if st.button("Copy to Clipboard"):
|
28 |
-
|
29 |
st.success("Text copied to clipboard!")
|
30 |
st.text_area("Extracted Text:", value=text_content, height=300)
|
|
|
|
|
|
|
31 |
|
32 |
|
33 |
|
|
|
3 |
import os
|
4 |
import pyperclip
|
5 |
from langchain.document_loaders import UnstructuredFileLoader
|
6 |
+
import tkinter as tk
|
7 |
|
8 |
+
def copy_to_clipboard(text):
|
9 |
+
root = tk.Tk()
|
10 |
+
root.withdraw() # Hide the main window
|
11 |
+
root.clipboard_clear()
|
12 |
+
root.clipboard_append(text)
|
13 |
+
root.update()
|
14 |
|
15 |
def main():
|
16 |
st.title("PDF Text Extractor")
|
|
|
32 |
txt += item.page_content
|
33 |
text_content = txt
|
34 |
if st.button("Copy to Clipboard"):
|
35 |
+
copy_to_clipboard(text_content)
|
36 |
st.success("Text copied to clipboard!")
|
37 |
st.text_area("Extracted Text:", value=text_content, height=300)
|
38 |
+
|
39 |
+
|
40 |
+
st.text_input("Copy this text:", value=text_content, key="copy_text")
|
41 |
|
42 |
|
43 |
|