Skip to content

Instantly share code, notes, and snippets.

@kossovics
Created September 5, 2012 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kossovics/3632570 to your computer and use it in GitHub Desktop.
Save kossovics/3632570 to your computer and use it in GitHub Desktop.
Szar a python
>>> json.dumps({None: 1, True: 2, False: 3, 1: 4, 'df': 5}, skipkeys=False)
'{"null": 1, "true": 4, "df": 5, "false": 3}'
>>> json.dumps({None: 1, True: 2, False: 3, 1: 4, 'df': 5}, skipkeys=True)
'{"null": 1, "true": 4, "df": 5, "false": 3}'
>>> json.dumps({None: 1, True: 2, False: 3, 1: 4, 'df': 5})
'{"null": 1, "true": 4, "df": 5, "false": 3}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment