【发布时间】:2018-02-04 04:14:02
【问题描述】:
我已经尽我所能在代码中放置global user,看看它是否丢失了,但似乎没有。基本上,当我在此处看到的这段代码中分配全局 user 变量后调用 userInstance.getName() 时:
if(userName in nameList):
for userdata in pklList:
if userdata.getName() == userName:
global user
user = userdata
print("user data found for user: " + user.getName())
它似乎并没有真正进入全局变量。这是目前代码的完整版本:
import praw
import time
import re
import pickle
from classes import User
USERAGENT = 'web:CredibilityBot:v0.1 (by /u/ThePeskyWabbit)'
FOOTER = "^^I ^^am ^^a ^^bot! ^^I ^^am ^^currently ^^in ^^test ^^phase. ^^Read ^^about ^^me ^^[here](https://pastebin.com/jb4kBTcS)."
PATH = "C:\\Users\\JoshLaptop\\PycharmProjects\\practice\\commented.txt"
user = User.User("ERROR")
commentFile = open(PATH, 'rb')
commentList = commentFile.read().splitlines()
commentFile.close()
pkl = open("userpkl.pkl", 'rb')
pklList = []
print(pklList)
try:
pickle.load(pkl)
while(True):
pklList.append(pickle.load(pkl))
except EOFError:
pass
pkl.close()
nameList = []
try:
for data in pklList:
nameList.append(str(data.getName()))
except:
pass
print(pklList)
print(nameList)
def addPoint(comment):
message = "current name for user: " + user.getName()
#userInstance.addScore()
#userInstance.addComment(comment)
#message = "Bullshit noted! " + userInstance.getName() + " now has a Bullshit rating of " + userInstance.getScore() + "\n\n" + FOOTER
return message
def getRating():
message = user.getName() + " has a Bullshit rating of: " + user.getScore()
return message
def getCommentList():
bullshitComments = user.getComments()
return bullshitComments
auth = True
def authenticate():
print("Authenticating...")
reddit = praw.Reddit('bot1', user_agent=USERAGENT)
print("Authenticated as {}\n" .format(reddit.user.me()))
return reddit
commentLink = None
actions = {"!bullshit": addPoint(commentLink), "!bullshitrating": getRating(user), "!bullshitdetail":getCommentList(user)}
stringList = ["!bullshit", "!bullshitrating", "!bullshitdetail"]
while(auth):
try:
reddit = authenticate()
auth = False
except:
print("Authentication Failed, retying in 30 seconds.")
time.sleep(30)
def runBot():
SUBREDDITS = 'test'
global user
while(True):
print("Scraping 1000 comments...")
for comment in reddit.subreddit(SUBREDDITS).comments(limit=1000):
for word in stringList:
match = re.findall(word, comment.body.lower())
if match:
id = comment.id
commentFile = open(PATH, 'r')
commentList = commentFile.read().splitlines()
commentFile.close()
if(id not in commentList):
print(match[0] + " found in comment: " + "www.reddit.com" + str(comment.permalink()))
commentLink = "www.reddt.com" + str(comment.parent().permalink())
print("Bullshit comment is: " + commentLink)
print("searching for user data")
userName = str(comment.parent().author)
flag = True
if(userName in nameList):
for userdata in pklList:
if userdata.getName() == userName:
user = userdata
print("user data found for user: " + user.getName())
elif comment.parent().author is not None:
print("no user found, creating user " + userName)
user = User.User(userName)
f = open("userpkl.pkl", 'ab')
pickle.dump(user, f)
f.close()
nameList.append(userName)
print("added to user to pkl file")
else:
print("username could not be retrieved.")
print("adding ID to log\n")
commentFile = open(PATH, 'a')
commentFile.write(id + "\n")
commentFile.close()
flag = False
if(flag):
try:
print(actions[match[0]])
#print("sending reply...")
#comment.reply(actions[match[0]])
#print("Reply successful. Adding comment ID to log\n")
#commentFile = open(PATH, 'a')
#commentFile.write(id + "\n")
#commentFile.close()
except:
print("Comment reply failed!\n")
runBot()
奇怪的是,当我在上述代码片段中调用 user.getName() 时,它会输出正确的名称,而不是像我在 addPoint() 函数中调用它时那样输出“错误”。
打印语句输出如下:
C:\Python36-32\python.exe C:/Users/JoshLaptop/PycharmProjects/practice/TestBot.py
[]
[<classes.User.User object at 0x03B59830>, <classes.User.User object at 0x03816430>]
['PyschoWolf', 'ThePeskyWabbit']
Authenticating...
Authenticated as CredibilityBot
Scraping 1000 comments...
!bullshit found in comment: link deleted for privacy
Bullshit comment is: link deleted for privacy
searching for user data
user data found for user: PyschoWolf
current name for user: ERROR
!bullshit found in comment: link deleted for privacy
Bullshit comment is: link deleted for privacy
searching for user data
user data found for user: ThePeskyWabbit
current name for user: ERROR
【问题讨论】:
-
“错误”从何而来?我在代码中看不到输出“错误”的任何地方。如果您收到错误消息,请显示它。您确定在尝试使用之前初始化
user吗?尝试在程序顶部附近的外部代码中对其进行初始化。 -
来自
user.getName()代码顶部行中分配的默认名称是“ERROR” -
这有点棘手,因为我要从 pickle 文件中加载对象以及使用 reddit 服务器验证帐户,然后从 .ini 文件中读取数据来执行此操作。我将尝试编写一些代码来创建此问题,而不需要我正在使用的文件。
-
我在搜索“错误”(如您所写)而不是“错误”。
标签: python loops variables syntax global