Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
awacke1
/
PyperclipStreamlitDemonstration
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
awacke1
commited on
Jan 19, 2023
Commit
0100a0e
·
1 Parent(s):
7783bd7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
ADDED
Viewed
@@ -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)