Dave
Dave
Update: Digging around in the code a bit, I was able to add support for parsing the service data. Adding this condition to `parse_switchbot()`: ``` elif msg_length == 7 and...
@Ernst79 Thanks… Since I posted this, the latest version of HA seems to have added out-of-the-box detection and support for it… So I am no longer using this component for...
Is this enhancement still in the plans? I'm not a Kodi add-on dev, but know my way around Python dev and would be happy to take a stab at a...
Any news on this? Is this repo (or more exactly its fork, over at https://github.com/MongoEngine/marshmallow-mongoengine), still supported? If not: is there any recommended alternative?
@strouja > Hi, I have a similar issue, my `/var/log/syslog` file is growing excessively - now 2.4 GB and will fill up the filesystem (every 5 seconds it is getting...
@lafrech thanks for the quick reply. We will also need to dig a bit deeper to see what can be done. The only observation so far, was that in order...
@lafrech after looking closer, I can't see a way to make this work nicely, without somehow modifying the logic that dumps from the Schema: https://github.com/marshmallow-code/flask-smorest/blob/91be3416213d63610f1ae078110d2d93463eaba3/src/flask_smorest/response.py#L103 The two structural issues I...
@lafrech After digging a bit more, I was able to get something very close to working smoothly. My main issue has to do with Marshmallow schema instantiation (so, not really...
> Random thought : would it make sense to override ***@***.***` to add > schema modifiers such as `only` and declare them as parameters along the > ones declared in...
@lafrech obviously, a cleaner way to do that, would be to have `filtered_response` a default decorator and factor out the API doc-related code between `response` and `filtered_response`… 😅 My `QueryListArgs`...