awacke1 commited on
Commit
0100a0e
·
1 Parent(s): 7783bd7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ import pyperclip
2
+ text_to_be_copied = 'The text to be copied to the clipboard.'
3
+ pyperclip.copy(text_to_be_copied)