I want to be able to decode a format that looks like JSON, but can handle hexadecimal content. Let's call it JSHON. Example content:
{
"nine": 9,
"ten": 0xA,
"eleven": 11
}
Is it easy to coax the stdlib json module to provide such an ability, or should I use something else.