使用BeautifulSoup时,可能会抛出如下错误:

RecursionError: maximum recursion depth exceeded while calling a Python object

查看系统递归限制,调大即可:

sys.getrecursionlimit()
1000
sys.setrecursionlimit(2000)