Last active
June 9, 2018 21:34
-
-
Save maxkoryukov/fc792fe94480977a395d31ce63e285f3 to your computer and use it in GitHub Desktop.
Python __json__
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import datetime | |
import simplejson | |
#json.dumps | |
__dumps = simplejson.dumps | |
def dumpsOverloaded(*args, **kwargs): | |
return __dumps(default=json_unknown, *args, **kwargs) | |
def json_unknown(o): | |
if isinstance(o, datetime.datetime): | |
s = o.isoformat() | |
else: | |
try: | |
s = o.__json__() | |
except KeyError: | |
raise TypeError(repr(o) + " is not JSON serializable") | |
return s | |
simplejson.dumps = dumpsOverloaded | |
json = simplejson |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
KeyError? Did you mean AttributeError?