일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- wireshark
- RTMP
- nginx-media-server
- service
- Pod
- spring cloud config
- dart
- docker
- Shell script
- aws
- Android
- Flutter
- Kubernetes
- kubectl
- HLS
- Sysinternals
- ebpf
- configmap
- macos
- Python
- android studio
- namespace
- Windows10
- ffmpeg
- Java
- 행정구역분류
- VSCode
- golang
- aws cli
- deployment
Archives
- Today
- Total
목록BeautifulSoup (1)
woonizzooni
[python] requests와 BeautifulSoup을 이용해 웹페이지 정보 가져오기
아주(!!) 초단간 코드로... 정보 선택 : 아래 그림의 '다음을 시작페이지로'를 가져와보자 (https://www.daum.net) 코드 작성 (예외처리 등은 고려하지 않음. 말그대로 예제...) #!/usr/bin/python # -*- coding: utf-8 -*- import requests from bs4 import BeautifulSoup def get(url): headers = {\ 'Host':'www.daum.net',\ 'Connection':'close',\ 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)',\ 'Accept':'*/*',\ 'Accept-E..
Programming/Python
2019. 6. 14. 01:32