Converting hex string representation to float in python
Ah ha:
It's in the standard library, "float.fromhex",
https://docs.python.org/2/library/stdtypes.html#float.fromhex
>>> float.fromhex('0x1.5c28f5c28f5c3p-1')
0.68
It's in the standard library, float.fromhex
.