实时复制和粘贴到 Excel

Real-Time Copying and Pasting to Excel

我使用 openpyxl 和 pyperclip 制作了这个简单的程序,将剪贴板的内容粘贴到 Excel 中的连续行 - 例如,如果我复制单词 'hello',它将粘贴 'hello' 到单元格 'A2, A3, A4...'

但是,我的主要目标是创建一个程序,我可以在其中实时复制文本,然后程序将其粘贴到单元格中。例如,我复制文本 'hello',程序将其粘贴到 A2,然后我复制文本 'I like python' 并将其粘贴到单元格 A3 等等(然后我按一个键结束我完成后的程序)。

这可能吗?如果是这样,我该怎么做? (我愿意下载新库等)

import openpyxl
from openpyxl import Workbook
import pyperclip

wb = Workbook()

column = 'A'
row = 0

# grab the active worksheet
ws = wb.active

#loop through excel rows
for x in range(2,6):
   row = x
   cell = column + str(row)
   ws[cell] = pyperclip.paste()
   
# Save the file
wb.save("sample.xlsx")

其他帮助:在这种情况下,我(在您的帮助下)弄清楚了如何执行此操作,如果有人能告诉我如何保存单元格,我也将不胜感激 number/code。所以例如我 运行 程序并将相应的文本粘贴到单元格上 'A1, A2, A3...A14.' 有没有办法也将 'A14' 保存到内存中,所以下次我 运行 程序它从 A14 开始并相应地粘贴 -'A14, A15, A16...'

import openpyxl
from openpyxl import Workbook
import pyperclip


wb = Workbook()

column = 'A'
row = 0

# grab the active worksheet
ws = wb.active

clipboard = ["quote", "random"]

limit = 10

recentcopy = 'a'

x = 1
while(len(clipboard)<limit):
    recentcopy = pyperclip.paste()
    if(recentcopy != clipboard [x]):
        clipboard.append(pyperclip.paste())
        print(clipboard)
        row = x + 1
        cell = column + str(row)
        ws[cell] = clipboard[x]
        wb.save("heyo.xlsx")
        x = x+1

如果您想要一个简单的解决方案来存储您所在的单元格,我建议将单元格写入文本文件,然后让您的程序在启动时读取该文本文件,以便它知道从哪里继续。可在此处找到包含 python 的文本文件教程:https://www.geeksforgeeks.org/reading-writing-text-files-python/