我一直收到这个错误,我对Python比较新,所以我不确定我做错了什么。这段代码基本上是从我正在学习的书中复制出来的,不会运行。
错误讯息:
Traceback (most recent call last):
File "C:\Users\RaudaR\Desktop\Work\python_work\phoneAndEmail.py", line 23, in <module>
text = str(pyperclip.paste())
AttributeError: module 'pyperclip' has no attribute 'paste'
这是我在Atom中运行的代码。
#! python3
# phoneAndEmail.py - Finds phone numbers and email addresses on the clipboard.
import pyperclip, re
phoneRegex = re.compile(r'''(
(\d{3}|\(\d{3}\))? # area code
(-|\s|\.)? # separator
(\d{3}) # first 3 digits
(-|\s|\.) # separator
(\d{4}) # last 4 digits
(\s*(ext|x|ext.)\s*(\d{2,5}))? # extension
)''', re.VERBOSE)
# Create Email Regex.
emailRegex = re.compile(r'''(
[a-zA-Z0-9._%+-]+ # username
@ # @ symbol
[a-zA-Z0-9.-]+ # domain name
(\.[a-zA-Z]{2,4}) # dot-something
)''', re.VERBOSE)
# Find Matches in Clipboard text.
text = str(pyperclip.paste())
matches = []
for groups in phoneRegex.findall(text):
phoneNum = '-'.join([groups[1], groups[3], groups[5]])
if groups[8] != '':
phoneNum += ' x' + groups[8]
matches.append(phoneNum)
for groups in emailRegex.findall(text):
matches.append(groups[0])
# Copy results to the Clipboard.
if len(matches) > 0:
pyperclip.copy('\n'.join(matches))
print('Copied to clipboard:')
print('\n'.join(matches))
else:
print('No phone numbers or email addresses found.')
该模块与phoneAndEmail.py位于同一文件夹中,修复了我以前的导入问题。
答案 0 :(得分:0)
您需要从工作目录中检入几件事。
pyperclip.py
或pyperclip.pyc
的文件,而不是实际的 pyperclip库。如果这对您不起作用,您可以pip uninstall pyperclip
并重新安装pip install pyperclip
。
答案 1 :(得分:-2)
您在任何时候都拥有一个名为pyperclip.py的文件吗?可能是它(或它的.pyc版本)是偶然导入的– Tadhg McDonald-Jensen 16年12月16日在18:57
这对我有用。