LINK="#0000bb" VLINK="#551a8b" ALINK="#ff0000">

Example of GetRequest object usage

>>> from pysnmp.proto import v1
>>> req = v1.Request()
>>> req
Request(version=Version(0), community=Community('public'), pdu=Pdus())
>>> req.decode(v1.GetRequest().encode())
''
>>> req
Request(version=Version(0), community=Community('public'), pdu=Pdus(get_request=GetRequestPdu(request_id=RequestId(2), error_status=ErrorStatus(0), error_index=ErrorIndex(0), variable_bindings=VarBindList())))
>>>


ilya@glas.net