JSON.Encoder1 [Python] object of type int32 is not json serializable 파이썬에서 json을 저장할 일이 있었는데, object of type int32 is not json serializable 오류가 발생했다. 이런 비슷한 오류가 자료형이 numpy의 int32, int64 이거나, datetime 일 경우에도 발생한다. 이는 json의 JSONEncoder가 numpy에서 제공하는 자료형을 기본값으로 변환하기 않기 때문에 발생하는 오류이다. class NpEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, np.integer):# np.integer를 python의 int로 변환 return int(obj) if isinstance(obj, np.floating):# np.floating을 py.. 2022. 12. 27. 이전 1 다음