Requests
2021. 5. 12. 09:19ㆍ{Programing}/Python
python 에서 사용하는 HTTP 용 패키지.
간단하게 요청하고 응답을 받아올수 있음.
json 형태로 정의된 파라메터를 get함수를 이용해서 보내고
post 함수를 이용해 json형태로 정의된 응답을 받을수 있다.
docs.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
docs.python-requests.org
BeautifulSoup 패키지를 같이 사용해서 크롤링을 할 수 있음.
'{Programing} > Python' 카테고리의 다른 글
Python Cheat Sheet (0) | 2023.02.04 |
---|---|
beautifulsoup (0) | 2021.05.12 |
keras (0) | 2021.05.10 |
tensorflow (0) | 2021.05.10 |
matplotlib (0) | 2021.05.10 |