• 회원가입
  • 로그인
  • 구글아이디로 로그인

[module] Python - requests 모듈 메서드 종류 (※ 요청 모듈)

1308  
목차
  1. requests 모듈 설치
  2. requests 모듈 메서드 종류

 

requests 모듈 설치

※ CMD 모드에서 아래 명령어 실행.

 

pip install requests

 

 

requests 모듈 메서드 종류

 

requests.delete(url, args)

지정 URL에 DELETE 요청 보냄.

 

requests.get(url, params, args)

지정 URL에 GET 요청 보냄.

 

requests.head(url, args)

지정 URL에 HEAD 요청 보냄.

 

requests.patch(url, data, args)

지정 URL에 PATCH 요청 보냄.

 

requests.post(url, data, json, args)

지정 URL에 POST 요청 보냄.

 

requests.put(url, data, args)

지정 URL에 PUT 요청 보냄.

 

requests.request(method, url, args)

지정 메서드의 요청을 지정 URL로 보냄.

 



분류 제목
module Python - random.vonmisesvariate() 메서드 △ - 폰미제스분포 (방향통계) 기반 랜…
module Python - random.paretovariate() 메서드 △ - 파레토분포 (확률이론) 기반 랜덤 부…
module Python - random.weibullvariate() 메서드 △ - 베이블분포 (통계) 기반 랜덤 부동…
module Python - requests 모듈 메서드 종류 (※ 요청 모듈)
module Python - requests.delete() 메서드 - 지정 URL에 DELETE 요청 보냄. (= de…
module Python - requests.get() 메서드 - 지정 URL에 GET 요청 보냄. (= get메서드 =…
module Python - requests.head() 메서드 - 지정 URL에 HEAD 요청 보냄. (= head메서…
module Python - requests.patch() 메서드 △ - 지정 URL에 PATCH 요청 보냄. (= pa…
module Python - requests.post() 메서드 -
module Python - requests.put() 메서드 △ - 지정 URL에 PUT 요청 보냄. (= put메서드…
module Python - requests.request() 메서드 △ - 지정 메서드의 요청을 지정 URL로 보냄. …
module Python - statistics 모듈 메서드 종류 (= 통계 모듈)
module Python - statistics.harmonic_mean() 메서드 - 조화 평균값 (= harmonic…
module Python - statistics.mean() 메서드 ★ - 평균값 (= mean메서드 = 민메서드)
module Python - statistics.median() 메서드 ★ - 중앙값 (= 중간값 = 가운데값 = med…
module Python - statistics.median_grouped() 메서드 -
module Python - statistics.median_high() 메서드 - 높은 중앙값 (= median_hig…
module Python - statistics.median_low() 메서드 - 낮은 중앙값 (= median_low메…
module Python - statistics.mode() 메서드 ★ - 최빈값 반환. (= mode메서드 = 모드)
module Python - statistics.pstdev() 메서드 -
2/7
목록
찾아주셔서 감사합니다. Since 2012