Beautifulsoup, maximum recursion depth reached

后端 未结 3 1101
予麋鹿
予麋鹿 2021-01-18 07:21

This is a beautifulsoup procedure that grabs content within all

html tags. After grabbing content from some web pages, I get an error th

3条回答
  •  醉酒成梦
    2021-01-18 07:38

    You probably hit a string. Iterating over a string yields 1-length strings. Iterating over that 1-length string yields a 1-length string. Iterating over THAT 1-length string...

提交回复
热议问题