Lumouille

Results 87 comments of Lumouille

so this is the result inside the loop for @tasks.loop(seconds=5, overlap=True) async def test_loop(self): logger.debug( f"test loop {self.test_loop.current_loop}, Next loop {self.test_loop.next_iteration}, tasks {self.test_loop.get_task()}" ) await asyncio.sleep(15) logger.debug(f"test loop done {self.test_loop.current_loop}")...

> Oh, one extra thing, tasks should be removed from `_tasks` after they complete (otherwise the list will just grow infinitely) is this enough ? ```py task = asyncio.create_task( (...

> Could that potentially clutch with #2645? Not anymore

> This could use a little example, either in the docs or in the directory. As it's asked for once in a while, and an example could help with explaining...

so my current fix is using the emoji lib : https://pypi.org/project/emoji/ how should i do, just add this to the requirement txt ?

> @Lumabots What concerns me is that the emoji lib does not necessarily always include all of discord's nomenclature for markdown emojis. Notably, see [this](https://www.reddit.com/r/discordbots/comments/14ubnso/resource_for_full_list_of_global_discord_emojis/) and [this](https://www.reddit.com/r/discordapp/comments/k1c4rl/where_to_find_full_unicode_to_mark_up_emoji_list/) reddit threads. >...