Hi all,
I need to set some variables via Pysnmp which take 'unsigned int' only.
Is python int by default a 32 bit- signed int? How do I convert it into 16 and 8 bit- unsigned ints? I need to read two registers consequently( which are of 8 bits each) and both of them together give me the desired result.
Can i just convert the result of snmp 'get' into a string, concatenate two strings and later convert it back to int using int()?
any help pls...