[Python] request 라이브러리
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
2022. 6. 14. 21:10