Python Pyperclip模塊怎么安裝和使用
本文講解"Python Pyperclip模塊如何安裝和使用",希望能夠解決相關(guān)問(wèn)題。
Pyperclip模塊詳解
一. Pyperclip模塊安裝
Pyperclip模塊兼容python2和python3,能跨平臺(tái)使用。
安裝指令如下,在Anaconda的終端執(zhí)行如下指令。
pip install pyperclip
二.Pyperclip功能介紹
1.復(fù)制粘貼文本復(fù)制到剪貼板,pyperclip.copy()。
剪貼板粘貼文本,pyperclip.paste(),返回值為字符串類(lèi)型。
pyperclip.copy('Hello world!') pyperclip.paste()
2.waitForPaste與waitForNewPaste
pyperclip.waitForPaste(),當(dāng)剪貼板上有非空字符串時(shí),飛回字符串類(lèi)型的值。
pyperclip.waitForNewPaste(),當(dāng)剪貼板上的文本改變時(shí),傳返回值。
這些函數(shù)還具有一個(gè)timeout參數(shù),用于指定要檢查的秒數(shù)。如果超時(shí)過(guò)去了卻沒(méi)有返回,則這些函數(shù)將引發(fā)PyperclipTimeoutException異常:
a = pyperclip.waitForPaste(5)
pyperclip.copy('original text') a = pyperclip.waitForNewPaste(5)
pyperclip.PyperclipTimeoutException: waitForPaste() timed out after 5 seconds.
補(bǔ)充:pyperclip模塊安裝和使用
一、pyperclip模塊簡(jiǎn)介
pyperclip模塊中有兩個(gè)函數(shù),分別是copy()和paste(),copy()用于向計(jì)算機(jī)的剪貼板發(fā)送文本,paste()用于從計(jì)算機(jī)剪貼板接收文本。
二、pyperclip安裝
pyperclip模塊不是Python自帶的,需要自己安裝,安裝比較簡(jiǎn)單,windows下輸入安裝命令即可,如下:
pip install pyperclip
三、pyperclip模塊中函數(shù)使用
>>>import pyperclip
>>>pyperclip.copy("Hello world") #此時(shí)打開(kāi)剪貼板,可直接粘貼"Hello world"到剪貼板
如果在剪貼板中復(fù)制了某一段字符,比如"nihao",此時(shí)運(yùn)行pyperclip.paste()就會(huì)返回"nihao"
四、項(xiàng)目舉例(摘自python編程快速上手-讓繁瑣工作自動(dòng)化)
1、口令保管箱
PASSWORDS = {"email": "euyr8wuey89r3geidw", "blog": "wqeiy2398eghduk", "computer": "ewkwo][ke;w"} import sys, pyperclip if len(sys.argv < 2): print("Please input the account name") sys.exit() account = sys.argv[1] if account in PASSWORDS: pyperclip.copy(PASSWORDS[account]) print("The password for " + account + " copied to clipboard!") else: print("There is no account named " + account )
2、在標(biāo)記中添加無(wú)序列表
從剪貼板復(fù)制一段文本,在文本每一行開(kāi)頭加上“*”,再粘貼回剪貼板
import pyperclip text = pyperclip.paste() lines = text.split("\n") for i in range(len(lines)): lines[i] = "*" + lines[i] text = "\n".join(lines) pyperclip.copy(text)
關(guān)于 "Python Pyperclip模塊如何安裝和使用" 就介紹到此。希望多多支持碩編程。
- python如何遍歷字符串中每一個(gè)字符
- python中f字符串以及其常見(jiàn)用法介紹
- Python修改列表元素的方法
- Python異步之怎么保護(hù)任務(wù)免于取消
- Python反射機(jī)制怎么應(yīng)用
- Python異步之迭代器怎么使用
- Python數(shù)據(jù)可視化之Pyecharts如何使用
- Python中Matplotlib圖像如何添加標(biāo)簽
- Python Internet 協(xié)議模塊
- Python DNS查找
- Python 路由
- Python HTTP標(biāo)頭
- Python 構(gòu)建URL
- Python Web表單提交
- Python 電子郵件
- Python 上傳數(shù)據(jù)
- Python 代理服務(wù)器
- Python 系統(tǒng)和內(nèi)存架構(gòu)
- Python 線程通信
- Python 多處理器