Michel Albert

Results 167 comments of Michel Albert

A new version of puresnmp has been released today. Support for SNMPv1 is still experimental but should be working for basic requests. To enable SNMPv1, you have to pass in...

This was incidentally what led me to implement this. To make it easy to use. The new versions is ever so slightly more complicated because I decided to introduce the...

Thanks for reporting this. It shouldn't be too complicated to add a simple loop detection for this case.

Do you still have the device available? I might need your help with this to reliably reproduce this.

If you could trigger the error with debug-logging enabled and send the output that would be a huge help. Something like this: ``` import puresnmp import logging logging.basicConfig(level=logging.DEBUG) ... code-that-triggers-the-loop...

The new major release 2.0 has *finally* hit pypi. Albeit as pre-release for now so you have to opt-in by either running `pip install` with the `--pre` flag or using...

Thanks for this. This works for me. It is a bit surprising to see it construct a MIME message instance. I assume this is for PEP-0566. As it contains all...

I don't like the context-manager idea. Type-hints are just hints with no behaviour during runtime. They are PEP-3107 "annotations". The `with` block is a runtime construct. And mixing this feels...

Oh... this is going to be a fun one to dig into. One thing that would help me is to include the debug-logging if you can. Note that this *will*...

Thank you for the debug log. I hope this will lead me onto the right track. Again, considering that this is encrypted it's not going to be trivial and I...