본문 바로가기

파이썬 코드로 폼 데이터를 보내 처리하려면,

 

pip install requests 

 

를 통해 requests 를 설치해야 한다.

 

접속해서 POST, PUT을 처리하는 예제 코드는 아래와 같다.

params = { "param1": "test1", "param2": 123, "param3": "한글" } 
res = requests.post("http://127.0.0.1:5000/handle_post", data=json.dumps(params)) 
return res.text

apt-info.github.io/%EA%B0%9C%EB%B0%9C/python-flask3-post/

 

(python) flask 3. Post 요청 처리

지난 시간에 이어 Flask로 Post 요청을 처리하는 방법에 대해 알아보겠습니다.

apt-info.github.io

하나 더,

# Create a new resource
response = requests.post('https://httpbin.org/post', data = {'key':'value'})
# Update an existing resource
requests.put('https://httpbin.org/put', data = {'key':'value'})

www.nylas.com/blog/use-python-requests-module-rest-apis/

 

How to Use the Python Requests Module With REST APIs | Nylas

Learn how to use the Python Requests module to interact with any REST API in the world.

www.nylas.com

BJ.

경작할 시기가 와야할 터인데

Tom Fisk 님의 사진, 출처: Pexels

B로그0간

개발 관련 글과 유용한 정보를 공유하는 공간입니다.