Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sonarqube
- Service Mesh
- helm
- ECR
- CI/CD
- 스크레이핑
- Grafana
- docker
- scraping
- opentelemetry
- eks
- 웹 해킹
- Jenkins
- Prometheus
- deploy
- Monitoring
- Crawling
- argocd
- 크롤링
- DevOps
- Kubernetes
- gitlab ci
- CD
- linkerd
- Resource
- 모의해킹
- 웹 취약점
- CI
- GitLab
- gitlab cd
Archives
- Today
- Total
ㅡ.ㅡ
[Python/Crawling] requests - 쿠키 본문
쿠키 사용 흐름
아래 그림은 웹 페이지에 로그인시 입력된 데이터를 쿠키에 저장하여 프로필 페이지에 사용자의 정보를 출력하는 페이지에 흐름을 보여준다.
▼
▼
▼
쿠키 사용 코드
아래 코드는 이전에 쿠키를 사용하여 사용자 정보를 출력하는 것을 코드로 작성한 것이다. 로그인 데이터를 지정하여 다음 페이지를 요청하고 쿠키에 저장된 데이터를 확인 후 프로파일 페이지를 쿠키와 함께 요청한다.
import requests # 폼에 데이터 입력하여 페이지 요청하기 params = { "username": "ekwkqk12", "password": "password" } req = requests.post("http://pythonscraping.com/pages/cookies/welcome.php", data=params) # 쿠키 데이터 확인 print("[+] 쿠키에 저장된 데이터 ") print(req.cookies.get_dict()) # 쿠키 값을 포함하여 페이지 요청(GET) print("[+] 프로필 페이지로 이동합니다") req = requests.get("http://pythonscraping.com/pages/cookies/profile.php",cookies=req.cookies) print(req.text)
'Coding' 카테고리의 다른 글
[Python/Crawling] requests - 세션 (1) | 2018.05.04 |
---|---|
[Python/Crawling] reqeusts - 폼 (0) | 2018.05.04 |
[Python/Crawling] requests - 요청과 응답 (0) | 2018.05.04 |
[Python/Crawling] urllib - 특정 데이터 추출 및 파일 저장(DB) (0) | 2018.05.04 |
[Python/Crawling] urllib - 특정 데이터 추출 및 파일 저장(JSON) (0) | 2018.05.04 |