The last Micro Web Server for IoTs (MicroPython) or large servers (CPython), that supports WebSockets, routes, template engine and with really optimized architecture (mem allocations, async I/Os). Ready for ESP32, STM32 on Pyboard, Pycom's chipsets (WiPy, LoPy, ...). Robust, efficient and documented!
Is it possible to remove the use of the _thread module and use an alternative to threads?
Something like asyncio on CPython or uasyncio on Micropython, which is supported by the esp8266.
I want to use this library on the esp8266, but I'm stuck as the esp8266 does not support the _thread module (https://github.com/micropython/micropython/issues/3667).
Is it possible to remove the use of the _thread module and use an alternative to threads? Something like asyncio on CPython or uasyncio on Micropython, which is supported by the esp8266.
Thanks!