Radim Keske
Radim Keske
```bash $ pip3 install cython ```
and did you followed instructions? 1. run build.py then 2. python3 setup.py install
I am also bumping this PR as I think it would be nice to have also UDS server support - thank you @Tronic + @decentral1se you saved me ton of...
yea, I have got same exception, and its sad that the raised Exception breaks the generator, so it cannot be properly handled. What about just returning raw msg in such...
or maybe this also fixes broader range of cases ```python def decode_content(message): content = message.get_payload(decode=True) charset = message.get_content_charset('utf-8') try: return content.decode(charset, 'ignore') except LookupError: import chardet encoding = chardet.detect(content).get('encoding') if...
thats great idea to practice the PR since I have never done that. Will do.
many thanks for fast turn around!
it would be cool to have reverse lookup in the api, cant wait for it