[python] requests 첨부파일 및 데이터 전송 예제
requests 사용하여 첨부 파일 전송 import requests file = { 'narray': convert_bytes, 'x_coord': x_coord.tobytes(), 'y_coord': y_coord.tobytes(), } data = { 'shape1': shape1, 'shape2': shape2, 'shape3': shape3, 'dtype': roi_array.dtype, 'x_shape': x_coord_shape, 'x_dtype': x_coord.dtype, 'y_shape': y_coord_shape, 'y_dtype': y_coord.dtype, } response = requests.post('http://xxx.xxx.xxx.xxx/detection', files=f..