kusumakar commited on
Commit
4568aa7
1 Parent(s): 35a2d79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -122,13 +122,9 @@ def app():
122
 
123
  # display the image
124
  st.image(image, caption='The Uploaded File')
125
- st.write("Magical hashies have arrived* :sparkles: ", combined_hashtags)
126
-
127
- # Copy button
128
- if st.button("Copy Hashtags"):
129
- hashtags_str = "\n".join(combined_hashtags)
130
- pyperclip.copy(hashtags_str)
131
- st.write("Hashtags copied to clipboard!")
132
 
133
  # run the app
134
  if __name__ == '__main__':
 
122
 
123
  # display the image
124
  st.image(image, caption='The Uploaded File')
125
+ all = "\n".join(combined_hashtags)
126
+ st.write("Magical hashies have arrived* :sparkles: ")
127
+ st.write(all)
 
 
 
 
128
 
129
  # run the app
130
  if __name__ == '__main__':