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
- XSS
- hackingcamp
- 웹해킹
- webhacking
- Web Hacking
- Web
- backdoorctf 2023 web Unintelligible
- backdoorctf 2023 web
- 해킹캠프
- Hacker.org
- hacking
- cve 분석
- hackctf
- php
- CTF
- writeup
- RCE
- wargame.kr
- backdoorctf writeup
- 해외 wargame
- thinkPHP
- 웹 해킹
- WEB-hacking
- CVE
- WarGame
- 해외 워게임
- XSS-game
- backdoorctf 2023
- hackingcamp ctf writeup
- 해킹캠프 ctf
Archives
- Today
- Total
<OOO>
TypeError: object of type 'Response' has no len() 에러 본문
728x90
url = "http://example.com"
r = requests.get(url)
html = r.text
soup = BeautifulSoup(html,'html.parser')
links = soup.find_all("a")
굵게 칠해진 부분을 확인해보자. soup 변수에 html 을 넣어줄때 r.text 혹은 r.content 를 안넣어줘서 발생한 오류다.
'파이썬' 카테고리의 다른 글
UnicodeEncodeError: 'charmap' codec can't encode characters in position 19-20: character maps to <undefined> 해결방안 (0) | 2022.02.01 |
---|---|
파이썬 tor 크롤링 파일 저장 (0) | 2021.04.07 |
파이썬 wget 모듈 오류 (0) | 2021.04.06 |
파이썬 파일 한줄씩 읽기 (0) | 2021.03.28 |
Python Tor crawling (파이썬 토르 크롤링) (0) | 2021.03.25 |
Comments