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] 가상환경 설정하기 (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 |