-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmain.py
37 lines (30 loc) · 1.09 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from Question import *
from User import *
from Answer import *
from Topic import *
from Column import *
from Activity import *
user = User()
u = user.login('18052098217','Www.google.com2')
# 一个获取问题所有回答相关信息的例子
# Question('24183980',u).archieve_answerlist('')
# 一个获取回答基本信息的例子,
# 还可以获取所有收藏该回答的收藏夹以及所有点赞用户
# ans = Answer('https://www.zhihu.com/question/54446315/answer/159712952',u)
# ans.archieve_answer_list('voters')
# 一个获取用户基本信息的例子
# user.archieve_userinfo('shotgun')
# 一个用来获取用户所有粉丝和关注列表的例子关注的专栏和所有的提问等信息
'''
followers,followees,following-columns,following-questions,asks
'''
# user.archieve_list('sgai','followers')
# 一个用来获取话题所有精华问题的例子
'''
话题精华问题:top-answers 所有问题:questions
'''
t = Topic('19610067',u)
t.archieve_list(10,'questions')
# t.save_list('Test.xls')
# 一个用来获取专栏所有文章的例子
# Column('shitumao',u).archieve_articles()