1. 程式人生 > 實用技巧 >爬蟲遇到此類情況RecursionError: maximum recursion depth exceeded while calling a Python object

爬蟲遇到此類情況RecursionError: maximum recursion depth exceeded while calling a Python object

爬蟲的朋友一般分頁或者回調的時候就經常會遇到這個錯誤,英文意思很明白,超過了Python的最大遞迴深度。

解決方法很簡單,在程式碼頭部加入:

import sys
sys.setrecursionlimit(1000000)
這樣修改Python最大遞迴,自定義即可
在這裡插入圖片描述