Simple question, with a probable simple answer but I wanted to ask, to run asynchronous python functions all I need to do is use asyncio yeah? If so, they should be set that way by default IMO
TL;DR
You can use asyncio to run asynchronous Python functions. By default, they are not set to be asynchronous. Make sure to include the asyncio library and use the async keyword before defining the function.