Jobanpreet commited on
Commit
ba6e0db
·
verified ·
1 Parent(s): cbaaf44

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -147,10 +147,10 @@ def main():
147
 
148
 
149
  paraphrase_text=st.text_area("Paraphrase:", value=session_state.paraphrase, height=400)
150
- import pyperclip
151
- if st.button('Copy'):
152
- pyperclip.copy(paraphrase_text)
153
- st.success('Text copied successfully!')
154
 
155
  if st.sidebar.button("Show Keywords") and session_state.keywords:
156
  st.write("Keywords:")
 
147
 
148
 
149
  paraphrase_text=st.text_area("Paraphrase:", value=session_state.paraphrase, height=400)
150
+ # import pyperclip
151
+ # if st.button('Copy'): # For copying the content (Also install xclip (debian package) if error occured)
152
+ # pyperclip.copy(paraphrase_text)
153
+ # st.success('Text copied successfully!')
154
 
155
  if st.sidebar.button("Show Keywords") and session_state.keywords:
156
  st.write("Keywords:")