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
'[공부용]참고 사이트 모음 > [python]' 카테고리의 다른 글
Python Backend Program – DBModel (0) | 2021.03.23 |
---|---|
[python logging] 파이썬 일단위로 로그 파일 생성하기 - 로그 파일에 자동으로 날짜 입히기 - TimedRotatingFileHandler를 이용한 데일리 로깅 (0) | 2021.03.22 |
[Python] ASCII art - 파이썬에서 예쁘게 글자 출력하기 pyfiglet (0) | 2021.02.16 |
파이썬 tkinter로 gui - 표 만들기 (0) | 2021.02.05 |
Tkinter 레이블 텍스트를 변경하는 방법 (0) | 2021.02.05 |