Python Request
Python code 상에서 API를 호출하기 위한 모듈requests.(get, post, put, delete 등)으로 API 호출parameter로 url, headers, params, json, data, cookies, proxies 등을 받을 수 있음API의 body를 채울 때 각각 아래 parameter를 사용GETparamsPOSTjson, dataPUTjson, dataDELETEjson이나 data, param은 dict 형태의 데이터를 입력받음 pecan에서 제공하는 pecan.request 모듈을 이용하여 서버로 들어온 요청의 정보를 뽑아내어 사용 가능pecan.request.(path, headers, body 등)여기서 추출한 정보는 자체 자료 타입을 가지는 경우도 있기에 형변..