qiaoxingxing / zhihu-column-downloader

知乎盐选专栏下载, 支持视频、音频、图文
57 stars 12 forks source link

运行报错,错误代码如下 #4

Open weiwan7 opened 3 years ago

weiwan7 commented 3 years ago

author = re.search(r'

(.*?)<', text).group(1) AttributeError: 'NoneType' object has no attribute 'group' 求解

ttxs25830 commented 2 years ago

好像有点问题: column_downloader.py文件342行: author = re.search(r'

(.?)<', text).group(1) 这行难道不应该是 author = re.search(r'
(.?)
', text).group(1) 吗?