728x90
Python에서 Url 호출하여 HTML 내용을 읽자.
requests.Session()로 쿠키값을 유지하여 호출하자.
1. requests를 설치하자.
pip install requests
※ 소스
import requests
req = requests.Session()
url = "http://localhost/login.php"
para = {"id":"krsw", "pw":"krsw"}
#response = req.get(url, params = para)
response = req.post(url, data = para)
#print(response.content)
print(response.text)
url = "http://localhost/test.php"
response = req.post(url)
print(response.text)
※ 실행
728x90
반응형
'Software > Python' 카테고리의 다른 글
Python 시작하기 - CSV읽기 및 JSON변환 (0) | 2024.06.23 |
---|---|
Python 시작하기 - BeautifulSoup (0) | 2024.06.22 |
Python 소개 - WSL(Linux)에서 PySide6 사용 (0) | 2023.12.14 |
Python 시작하기 - PySide6에서 이미지 읽기 (0) | 2023.12.13 |
Python 시작하기 - pyVista (0) | 2023.12.13 |