sqlalchemy로 디비에 정보가 none이 들어가게 되면 에러가 발생하게 된다. 그래서 디비에 들어가는 orm을 만들기 전에 아래처럼 체크를 하여 none이 있으면 다른 값으로 바꾸어서 넣어준다. 그 전에 pandas를 사용할 때는 none을 다른 값으로 바꾸어주는 함수를 사용했는데 아래의 방법이 더 나은것 같다. if inflow_product['customFields']['custom8'] == "part" or inflow_product['customFields']['custom8'] == "Part" : inflow_product['customFields']['custom8'] = True else: inflow_product['customFields']['custom8'] = False # ..