Reputation: 3657
I tried doing some research, but havent seem to come up with something yet, so i figured someone might be able to help.
I want to use my existing python code:
decoded_pass = decrypt(
param_encoded_salt,
param_encoded_password
).decode('utf-8')
and copy
its value
to my system "clipboard".
So if I go into another application and ctrl+v
it will have the value of decoded_pass
How can I do this in Python3
Upvotes: 2
Views: 540
Reputation: 1222
You could try pyperclip. Website is here: http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/
Upvotes: 1