None is Python null. You'd think the JSON library would convert it to null though, not string "None" (which isn't what "None" is, anyway).
Edit: like so
Code:
>>> bla = None
>>> if bla == None: print('wee')
...
wee
>>> bla = 'None'
>>> if bla == None: print('wee')
...
>>>