parent
0cf56f3e8f
commit
6f7d912e20
@ -0,0 +1,17 @@
|
|||||||
|
import json
|
||||||
|
|
||||||
|
|
||||||
|
class IEncoder (json.JSONEncoder):
|
||||||
|
def default (self,object):
|
||||||
|
if type(object) == np.integer :
|
||||||
|
return int(object)
|
||||||
|
elif type(object) == np.floating:
|
||||||
|
return float(object)
|
||||||
|
elif type(object) == np.ndarray :
|
||||||
|
return object.tolist()
|
||||||
|
elif type(object) == datetime :
|
||||||
|
return object.isoformat()
|
||||||
|
else:
|
||||||
|
return super(IEncoder,self).default(object)
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue