Miguel Grinberg
Miguel Grinberg
I don't see why the request coming from the same switch would make a difference, and also why only the css file is affected. Any ideas on why that happens?...
@AndyThirtover Make sure you are using the latest microdot.py from this repo. I wonder if this is related to an issue I fixed recently related to multithreading. The RP2040 can...
No, this has to be something that is wrong on your side, since I've personally tested the Pico W recently. Can you show me a directory listing with all the...
Oh, I see, so you put the microdot files inside a `microdot` folder. Then the import should have been: from microdot.microdot import Microdot The first `microdot` is for your folder,...
SSL and WebSocket are completely independent features. I have the intention to investigate adding SSL support. I wasn't considering websocket, but it's not out of the question either. My concern...
I believe uwebsocket does not work with uasyncio. But in general I agree, I'm open to add support for both SSL and WS.
Update: WebSocket support is coming in the next release of Microdot. Will investigate SSL support after that.
> Will be possible to works in that way (just one page.html and put JQuery lib inside HTTP Server) on the Microdot as well? You can already serve static files...
> an WebSocket Client example running on the browser? Here is one from another project of mine: https://github.com/miguelgrinberg/flask-sock/blob/main/examples/templates/index.html. I did not test it, but I think it should directly work...
Thanks, this is useful feedback.