파이썬 requests 모듈
- http post get 실행가능.
- 간단히 기본 get 실행시켜보기.
import requests
URL = "https://igotit.tistory.com"
res = requests.get(URL);
print(res.status_code);
print(res.text);
실행결과.
403
<!doctype html>
<html lang="ko">
<head>
<title>TISTORY</title>
.... (생략)
post
my_data = {'param1': 'value1','param2': 'value2'}
res = requests.post(url, data=my_data);
아이디 비번 전달
url = "https://naver.com"
res=request.post(url, auth=("id", "pass"));
print("status code : " res.status_code);
get
my_para = {'param1': 'value1','param2': 'value2'}
res = requests.get(url, params=my_para);
response
- get, post 의 응답
response.status_code : 응답코드.
response.jason() : jason 타입 response 를 파이썬 딕셔너리 타입으로 변환.
첫 등록 : 2020.03.18
최종 수정 :
단축 주소 : https://igotit.tistory.com/2491
'지속가능티끌 > Python' 카테고리의 다른 글
Python. 파이썬 실행파일 만들기. Pyinstaller 이용 (0) | 2020.04.06 |
---|---|
Python. 다른 파이썬 파일의 함수 호출하기 . import, from import, import as (0) | 2020.03.19 |
Python. asyncio. 비동기 모듈. (1) | 2020.03.16 |
파이썬. 웹소켓. WbeSocket 구현. (0) | 2020.03.11 |
Python. 소켓통신 (0) | 2019.10.28 |
댓글