Working with NFC with pyscard I received a hexstring like this "01 CB"
I need to convert it to something like that b'\x01\xCB'
--
I know it is a 2 octet big endian and should be equal to 459.
I basically want to run that after the conversion int.from_bytes(b'\x01\xCB', byteorder='big')
Any help is appreciated, thanks