python_scripts
python_scripts copied to clipboard
廖雪峰教程那个 crawler 第146行是不是有错误
if not m.group(3).startswith("http"):
应该是group(2)吧
是的,应该 是group(2)。我自己本地就这样改了
是的,应该是
#if not m.group(3).startswith("http"):
if not m.group(2).startswith("http"):