简体   繁体   中英

Spyder: Cannot close a running event loop

I am currently checking out the Python discord wrapper found here but it doesn't seem to work due to the above mentioned error. I tried calling the nest_asyncio.apply() before running the client.run() function but it doesn't seem to work either as mentioned in this other question . This question is possibly a duplicate but couldn't add a comment in the previous one.

I tried this:

nest_asyncio.apply()
client = discord.Client()
client.run(bot_token)

as well as this to no avail:

client = discord.Client()
nest_asyncio.apply(client.run(bot_token))

I've faced a similar, if not the same issue a few months ago, and what I found on a comment to a github issue ultimately led to the following:


class DiscordAccessor:
    '''class to handle discord authentication and async loop handling
    Attributes
    ----------
        dc_coroutine
            the coroutine to start the client
        dc_thread
            the thread to keep the coroutine alive
    Methods
    -------
        start_loop
            starts the async loop'''
    dc_loop = asyncio.new_event_loop()
    client = discord.Client(loop=dc_loop)

    def __init__(self):
        self.dc_coroutine = DiscordAccessor.client.start('YOUR_TOKEN')
        self.dc_thread = threading.Thread(target=self.start_loop,
                                args=(self.dc_loop, self.dc_coroutine))
        self.dc_thread.start()

    def start_loop(self, loop, coro):
        '''starts the async loop
        Parameters
        ----------
            loop
                the asyncio loop
            coro
                the coroutine'''
        loop.run_until_complete(coro)

This class wraps the discord client into it's own thread and event loop. You'd call your client something like:

dc = DiscordAccessor()
dc.client.whatever_you_want_to_call()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM