How do I paste the copied text from keyboard in python

divyjot singh picture divyjot singh · Oct 18, 2017 · Viewed 12.5k times · Source

If I execute this code, it works fine. But if I copy something using the keyboard (Ctrl+C), then how can I paste the text present on clipboard in any entry box or text box in python?

import pyperclip
pyperclip.copy('The text to be copied to the clipboard.')
spam = pyperclip.paste()

Answer

Mike - SMT picture Mike - SMT · Oct 18, 2017

You will want to pass pyperclip.paste() the same place you would place a string for your entry or text widget inserts.

Take a look at this example code.

There is a button to copy what is in the entry field and one to paste to entry field.

import tkinter as tk
from tkinter import ttk
import pyperclip

root = tk.Tk()

some_entry = tk.Entry(root)
some_entry.pack()

def update_btn():
    global some_entry
    pyperclip.copy(some_entry.get())

def update_btn_2():
    global some_entry
    # for the insert method the 2nd argument is always the string to be
    # inserted to the Entry field.
    some_entry.insert(tk.END, pyperclip.paste())

btn = ttk.Button(root, text="Copy to clipboard", command = update_btn)
btn.pack()

btn2 = ttk.Button(root, text="Paste current clipboard", command = update_btn_2)
btn2.pack()


root.mainloop()

Alternatively you could just do Ctrl+V :D