반응형
requests 이용 예시
1. requests install
docs.python-requests.org/en/latest/user/install/#install
python -m pip install requests
2. get
import requests
# GET
res = requests.get('url')
print(str(res.status_code) + " | " + res.text)
3. post
import requests
import json
# POST (JSON)
headers = {'Content-Type': 'application/json; chearset=utf-8'}
data = {'title': 'dummy title', 'id': 1, 'message': 'hello world!'}
res = requests.post('url', data=json.dumps(data), headers=headers)
print(str(res.status_code) + " | " + res.text)
docs.python-requests.org/en/latest/
반응형
'Python' 카테고리의 다른 글
[Python] Script 작성 (0) | 2021.04.15 |
---|---|
[Python] 파이썬 dependency 관리 (0) | 2021.04.15 |
[Python] 날짜 구하기 (날짜 리스트 만들기) (0) | 2021.04.07 |
[PYTHON] TXT 파일 생성 / 수정 / 읽기 (한글깨짐) (0) | 2021.04.07 |
[Python] 기본 문법 (0) | 2021.04.06 |