상세 컨텐츠

본문 제목

[Python] request 라이브러리

Python

by TUZA 2022. 6. 14. 21:10

본문

requests

: Requests is an elegant and simple HTTP library for Python, built for human beings. 

즉, 파이썬에서 http를 쉽게 이용하기 위한 라이브러리이다.

 

import requests


res = requests.get('https://www.naver.com/')
print(res.text)


###
# GET : 요청, 값 가져오는 역할
# POST : 생성, 액션,
# PUT : 수정, 덮어쓰기
# delete : 삭제

 

반응형

'Python' 카테고리의 다른 글

[Python] 가상환경 설정하기  (0) 2022.08.05
[Python] Pyperclip  (0) 2022.07.27
[Python] 상속  (0) 2022.06.14
[Python] 클래스 실습예제  (0) 2022.06.14
[Python] map, filter 함수  (0) 2022.06.11

관련글 더보기