forked from lzjun567/zhihu-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# from zhihu.models import answer | ||
# from zhihu.models import zhihux | ||
# from zhihu.models import question | ||
# from zhihu.models import column | ||
# from zhihu.models import account | ||
# | ||
# __author__ = 'liuzhijun' | ||
# __license__ = 'MIT' | ||
# | ||
# __all__ = ["Answer", "Zhihu", "Question", "Column", "Account"] | ||
# | ||
# Answer = answer.Answer | ||
# Zhihu = zhihux.ZhihuX | ||
# Question = question.Question | ||
# Column = column.Column | ||
# Account = account.Account | ||
from .models import answer | ||
from .models import zhihu | ||
from .models import question | ||
from .models import column | ||
from .models import account | ||
|
||
__author__ = 'liuzhijun' | ||
__license__ = 'MIT' | ||
|
||
__all__ = ["Answer", "Zhihu", "Question", "Column", "Account"] | ||
|
||
Answer = answer.Answer | ||
Zhihu = zhihu.Zhihu | ||
Question = question.Question | ||
Column = column.Column | ||
Account = account.Account |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ | |
|
||
""" | ||
Model获取知乎数据的基类对象,任何对象都可以继承该类 | ||
获取知乎数据对象的抽象既基类,任何对象都可以继承该类 | ||
比如 Answer, Question, Account | ||
""" | ||
|
||
|