-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user.get_followers_num() NoneType error #51
Comments
你好, 我试着运行了如下代码,并没有发现错误,你要不重新clone一份再试下看? from zhihu import Question
from zhihu import Answer
from zhihu import User
from zhihu import Collection
if __name__ == '__main__':
user_url = "https://www.zhihu.com/people/BravoMaooo"
user = User(user_url)
user.get_followers_num()
followers = user.get_followers()
for follower in followers:
try:
print(follower.get_followers_num())
except Exception:
print('there is an error')
print(Exception)
print(follower.get_user_id()) |
你好。。我没有clone 代码。。试着又run了下我本地的代码。。这次没问题。。下次我再遇到类似错误。再看吧。谢谢回复 |
我今天爬内容的时候 又出现了我原来说的那个错误 我试着print 了下 soup.prettify() 里面确实没有class_="zm-profile-side-following zg-clear"....所以他找不到 那么 这个exception 也是可以理解的。。我不知道这是知乎采取的什么措施啥的。还是怎样。。 我看了下 发生错误的URL https://www.zhihu.com/people/suji-yan 里面的网页源码。里面是可以找到class_="zm-profile-side-following zg-clear" 但爬下来的soup 里面没有。。。 谢谢你们的指教~ |
我也遇到了这个问题,在爬取一段时间以后知乎会把首页的内容作为用户界面的内容返回给你,看了一下上面重复请求的办法,好像也没解决。 |
我在知乎客户端不止一次遇到这样的情况,点击某个用户的界面时会显示我首页的内容,不知道有没有人跟我一样?我猜想这个是知乎那边的bug? |
搞定了...貌似知乎对headers中带有python字眼的请求做了修正,会丢一些奇怪的页面出来。把headers中的user-agent改成其他浏览器的名称就可以了。
|
我试着用了你们的API获取follow我的知乎人的followers 人数 大部分都运行挺好的 但爬有些人时候 会出现如下错误 我看get_followers_num的原码。。觉得没问题啊 不是很理解
Error in get_followers_num
followers_num = int(soup.find("div", class_="zm-profile-side-following zg-clear")
AttributeError: 'NoneType' object has no attribute 'find_all'
代码如下
那个出错用户的知乎链接 https://www.zhihu.com/people/KellenWang
谢谢指教
The text was updated successfully, but these errors were encountered: