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
- linkerd
- deploy
- CI/CD
- CI
- Prometheus
- Kubernetes
- ECR
- GitLab
- Monitoring
- 스크레이핑
- 모의해킹
- gitlab cd
- Resource
- 크롤링
- 웹 취약점
- opentelemetry
- 웹 해킹
- eks
- DevOps
- helm
- gitlab ci
- argocd
- Crawling
- scraping
- Service Mesh
- sonarqube
- CD
- docker
- Jenkins
- Grafana
Archives
- Today
- Total
ㅡ.ㅡ
[Python/Crawling] requests - 세션 본문
세션
아래 코드는 세션을 사용하여 페이지를 요청할 때 쿠키를 따로 전송하지 않고 세션에 저장된 쿠키를 사용하여 페이지를 요청하는 코드이다.
import requests # 세션 생성 session = requests.Session() # 폼에 데이터 입력 + 세션 사용하여 요청하기 params = {"username":"ekwkqk12", "password":"password"} req_s = session.post("http://pythonscraping.com/pages/cookies/welcome.php", data=params) # 세션에 저장된 쿠키 데이터 확인 print("[+] 쿠키에 저장된 데이터 ") print(req_s.cookies.get_dict()) # 쿠키 값이 포함된 세션을 사용하여 페이지 요청(GET) print("[+] 프로필 페이지로 이동합니다") profile_page = session.get("http://pythonscraping.com/pages/cookies/profile.php") print(profile_page.text)
'Coding' 카테고리의 다른 글
[Python/Crawling] requests - 쿠키 (0) | 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 |