본문 바로가기
IT공부/Python

Python _ request를 통해 파일 다운로드 받기!

by 놀고싶은 노자 2021. 3. 4.

request모듈을 사용하면,

주소(String)를 통해서 request요청을 할 수 있다. 

 

request모듈의 경우 주석으로도 썼지만, 

우선 터미널에서 pip install requests를 써서 설치를 해야 사용이 가능하다. 

 

2.python-requests.org/en/master/user/quickstart/

 

Quickstart — Requests 2.25.1 documentation

Eager to get started? This page gives a good introduction in how to get started with Requests. Let’s get started with some simple examples. Passing Parameters In URLs You often want to send some sort of data in the URL’s query string. If you were const

2.python-requests.org