Eugenio Panadero

Results 11 comments of Eugenio Panadero

Hi @eloneill, IP usage is too new, sorry :) I need to take some time to polish the plot logic so those errors get better treatment. Anyway, I think your...

Hi there :) > any thoughts/updates? Yes. `psychrolib` has been updated with special support for arrays, and I have in my TODO list a very needed update on this repo,...

Hi @Fulch, Some things were broken (sorry!) with the last versions. I hope they are fixed with #229. Could you check it before it is released, to be sure?

Hi @Kugelfang666, > how do I deploy a non released version to my system. Typically I’m using HACS to deploy CC to my setup... If you have access to your...

Closing this one as completed. In recent versions there is support for lifespan async context manager, and the `init_app` legacy method also works. The example apps work with both `uvicorn`...

With latest versions, the example apps should work out-of-the-box. Using a fresh clone and install: ```shell git clone https://github.com/sabuhish/fastapi-mqtt.git cd fastapi-mqtt poetry install poetry shell uvicorn examples.app:app --port 8000 ```...

Hi @rvk, that kind of event filter is not possible with the current implementation, as it is expecting simple filters without that kind of nested data (a list of integers...

Hi @pksofttech, are you trying to serialise the `MQTTConfig` with a SSLContext defined? (it's not possible) Could you give some details about your environment? (python, pydantic + fastapi-mqtt versions, etc.)...

Closing this one, as deprecated. In current v2.1.1 the `MQTTConfig(BaseModel)` already has the `model_config = ConfigDict(arbitrary_types_allowed=True)`, and, unless trying to serialise to JSON with an SSLContext, there are no known...

Hi @RobertDeRose I see your point, and I think I understand it, but in reality there are multiple time windows where the MQTT client could be disconnected, like in -...