python으로 request.post에 data에 JSON 데이터를 넘겼을 때, 아래와 같은 에러가 발생함. ValueError: too many values to unpack (expected 2) JSON List Array인데, 내부에 key-value pair가 여러개 있으면 안된다. 즉, [{"K1":"V", "K2":"V2","K3":"V3"}, {"K1":"V", "K2":"V2","K3":"V3"}] 이 형태는 안됨. https://requests.readthedocs.io/en/latest/api/ data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the Reques..