jczic / MicroWebSrv2

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!
https://github.com/jczic/MicroWebSrv2
MIT License
662 stars 97 forks source link

Possible esp8266 support #86

Open panilov7 opened 2 years ago

panilov7 commented 2 years ago

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!