Small garage of one Ford in the big internet
Our savior is Ewald de Wit and his nest-asyncio
python3 -m pip install nest-asyncio
import nest_asyncio
async def main():
pass # your code here
loop = asyncio.get_event_loop()
nest_asyncio.apply(loop)
loop.run_until_complete(main())
Now your can run async methods in debug console or window like this:
loop.run_until_complete(your_async_method())