I suggest two versions of the library, one that implements the asyncio library
https://docs.python.org/3/library/asyncio.html
and one that does not.
Async library is used to pause execution of the current function while waiting on io functions, and move to another function in the meantime
The reason I suggest this is becuase the async library is the standard for the discord.py library, which is where I see the most usage out of this library.
The reason you would need two versions of the library is becuase some people don't need or want to deal with the added complexities from working with asyncio.
I should also add that it would be impossible to adapt this into my sbs discord bot without these features
I suggest two versions of the library, one that implements the asyncio library
https://docs.python.org/3/library/asyncio.html
and one that does not.
Async library is used to pause execution of the current function while waiting on io functions, and move to another function in the meantime
The reason I suggest this is becuase the async library is the standard for the discord.py library, which is where I see the most usage out of this library.
The reason you would need two versions of the library is becuase some people don't need or want to deal with the added complexities from working with asyncio.
I should also add that it would be impossible to adapt this into my sbs discord bot without these features