您好,我正在尝试使用创建工作程序的主类来对我的discord bot进行多处理,并检索不一致的消息以将它们放入队列中。当我初始化我的工作人员时,我作为争论传递给我的不和谐客户端,这是错误。
AttributeError: Can't pickle local object 'WeakSet.__init__.<locals>._remove'
我的代码:
class Master:
def __init__(self):
# Vars init
print('Starting Master...')
self.client = discord.Client()
self.manager = Manager()
self.user_spam = self.manager.dict()
self.user_mute_chat = self.manager.dict()
self.forbidden_words_list = []
self.spam_t = self.manager.Value('i', 0)
self.user_t_spam_muted = self.manager.Value('i', 0)
self.to_master = []
self.request_queue = Queue()
self.cpu = cpu_count()
# Web socket handlers
# self.client.event(self.on_member_update)
self.client.event(self.on_ready)
self.client.event(self.on_message)
# Bot init
self.forbidden_words_list = self.manager.list(get_file_content('res/forbidden_words.txt'))
for line in get_file_content('res/settings.txt'):
if 'spamtime=' in line:
self.spam_t = int(line.replace('spamtime=', ''))
if 'usertimemuted' in line:
self.user_t_spam_muted = int(line.replace('usertimemuted=', ''))
# Workers init
print('Starting Workers...')
for i in range(self.cpu):
Worker(self.request_queue, self.client, self.user_spam, self.user_mute_chat, self.spam_t,
self.user_t_spam_muted, self.forbidden_words_list).start()
# Discord init
print('Connecting to discord...')
self.client.run(TOKEN)
class Worker(Process):
def __init__(self, queue, client, user_spam, user_mute_chat, spam_t, user_t_spam_muted, forbidden_words_list):
super(Worker, self).__init__()
# Vars init
self.client = client
self.message = ''
self.message_id = discord.Message
self.word_list = []
self.username = discord.Member
self.queue = queue
self.user_spam = user_spam
self.user_mute_chat = user_mute_chat
self.spam_t = spam_t
self.user_t_spam_muted = user_t_spam_muted
self.forbidden_words_list = forbidden_words_list
async def run(self):
# do some initialization here
# Work here
for data in iter(self.queue.get, None):
pass
完整追溯:
Traceback (most recent call last):
File "C:/Users/PC/PycharmProjects/AIDiscord/AIDiscord.py", line 406, in <module>
master = Master()
File "C:/Users/PC/PycharmProjects/AIDiscord/AIDiscord.py", line 42, in __init__
self.user_t_spam_muted, self.forbidden_words_list).start()
File "C:\Users\PC\AppData\Local\Programs\Python\Python36-32\Lib\multiprocessing\process.py", line 105, in start
self._popen = self._Popen(self)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36-32\Lib\multiprocessing\context.py", line 223, in _Popen
return _default_context.get_context().Process._Popen(process_obj)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36-32\Lib\multiprocessing\context.py", line 322, in _Popen
return Popen(process_obj)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36-32\Lib\multiprocessing\popen_spawn_win32.py", line 65, in __init__
reduction.dump(process_obj, to_child)
File "C:\Users\PC\AppData\Local\Programs\Python\Python36-32\Lib\multiprocessing\reduction.py", line 60, in dump
ForkingPickler(file, protocol).dump(obj)
AttributeError: Can't pickle local object 'WeakSet.__init__.<locals>._remove'
Unclosed client session
client_session: <aiohttp.client.ClientSession object at 0x0EDDAED0>
我搜索了一点,当我开始()进程时它会附加,它不依赖于我传递的参数。
答案 0 :(得分:0)
多处理库尝试腌制必要的对象。但是,您正在使用Asyncio(“工人”类中的“运行”方法),并且会导致此错误。
您无法在Python中腌制Asyncio对象。
答案 1 :(得分:0)
您需要在 multiprocessing.Process.run
而不是 init 中创建异步循环和相关项目的实例。
我使用的模式是这样的:
import asyncio
import multiprocessing
import typing
class Process(multiprocessing.Process):
def __init__(self,
group=None,
target=None,
name=None,
args=(),
kwargs=None):
super().__init__(group, target, name, args, kwargs)
self.loop: typing.Optional[asyncio.AbstractEventLoop] = None
self.stopped: typing.Optional[asyncio.Event] = None
def run(self):
self.loop = asyncio.get_event_loop()
self.stopped = asyncio.Event()
self.loop.run_until_complete(self._run())
async def _run(self):
"""My async stuff here"""