[공부용]참고 사이트 모음/[python]
Python requests 모듈
bled
2021. 3. 19. 11:46
dgkim5360.tistory.com/entry/python-requests
Python requests 모듈 간단 정리
Python에서 HTTP 요청을 보내는 모듈인 requests를 간단하게 정리하고자 한다. 0. 기본적인 사용 방법 import requests URL = 'http://www.tistory.com' response = requests.get(URL) response.status_code respo..
dgkim5360.tistory.com
공식문서
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