Beispiel #1
0
def answer_stats_short_link_route(answer_short_link):
    return jsonify(Quora.get_one_answer(answer_short_link))
Beispiel #2
0
def answer_stats_specific_user_alternate_route(question, user):
    return jsonify(Quora.get_one_answer(question, user=user))
Beispiel #3
0
def answer_stats_short_link_route(answer_short_link):
    return jsonify(Quora.get_one_answer(answer_short_link))
Beispiel #4
0
def answer_stats_specific_user_alternate_route(question, user):
    return jsonify(Quora.get_one_answer(question, user=user))
Beispiel #5
0
#pip install quora
from quora import User, Quora

user = User('Christopher-J-Su')
activity = user.activity
print(activity)

question = Quora.get_question_stats('what-is-python')
print(question)

answer = Quora.get_one_answer('http://qr.ae/6hARL')
answer = Quora.get_one_answer('6hARL')
latest_answers = Quora.get_latest_answers('what-is-python')