Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- C#
- 오류
- C++
- ubuntu
- 핑거스타일
- 채보
- LIST
- error
- JSON
- Docker
- YOLO
- 프로그래머스
- label
- 명령어
- VS Code
- pandas
- Visual Studio
- windows forms
- pip
- Selenium
- OpenCV
- mysql
- SSH
- pytorch
- paramiko
- C
- 기타 연주
- Numpy
- Linux
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python requests 모듈 JSON 데이터 POST 전송 예제 본문
Python requests 모듈로 JSON 데이터를 POST 방식으로 전송하는 간략한 예제이다.
8000번 포트의 URL로 JSON 데이터를 전송한다.
import requests
# JSON 데이터
data_to_send = {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
# 전송 URL, 8000번 포트 사용
url = "https://example.com:8000/api"
# JSON 데이터를 POST 요청으로 전송
response = requests.post(url, json=data_to_send)
# 응답 확인
if response.status_code == 200:
print("success")
print("response data:", response.json())
else:
print("failed. status code:", response.status_code)
print("error message:", response.text)
'Python' 카테고리의 다른 글
Python list 숫자 범위 내 빠진 숫자 탐색 (0) | 2024.02.03 |
---|---|
AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' 오류 (1) | 2024.01.27 |
Python 데몬(daemon) 쓰레드 설정(메인 쓰레드 종료 시 함께 종료) (0) | 2024.01.15 |
Python pytube youtube 영상 다운로드 (0) | 2024.01.03 |
Python JSON 문자열이 포함된 문자열, output string(stdout)을 JSON 객체로 파싱(parsing) (0) | 2024.01.01 |
Comments