You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# -*- coding: utf-8 -*-
|
|
# @Time : 2020/3/16 21:26
|
|
# @File : get_text_from_cupboard_13.py
|
|
# @Author: Hero Liu
|
|
# python读取剪切板内容
|
|
import win32clipboard as w
|
|
import win32con
|
|
|
|
|
|
def get_text():
|
|
w.OpenClipboard()
|
|
d = w.GetClipboardData(win32con.CF_TEXT)
|
|
w.CloseClipboard()
|
|
return d.decode('GBK')
|