I'm interested in having simplejson.loads()
successfully parse the following:
{foo:3}
It throws a JSONDecodeError
saying "expecting property name" but in reality it's saying "I require double quotes around my property names". This is annoying for my use case, and I'd prefer a less strict behavior. I've read the docs, but beyond making my own decoder class, I don't see anything obvious that changes this behavior.
simplejson
accept something that's not valid JSON? (It's JavaScript where the quotes are optional. In JSON they're mandatory.) – Thickskinned