Hi.
Will there be a sync api version in the future?
I understand that async is a priority, sometimes it is more convenient to work with sync.
For example, communication between two characters. I can't call two asyncio.run(main()) at the same time.
asyncio.run(char_first())
asyncio.run(char_sec())
Hi.
Will there be a sync api version in the future?
I understand that async is a priority, sometimes it is more convenient to work with sync.
For example, communication between two characters. I can't call two asyncio.run(main()) at the same time.