pyquora icon indicating copy to clipboard operation
pyquora copied to clipboard

Quora get all answers

Open abhigenie92 opened this issue 8 years ago • 0 comments

import html2text
from pprint import pprint
from quora import User
user=User('Richard-Muller-3')
activity=user.activity
content=activity['activity']
answers=[html2text.html2text(answer['summary']) for answer in content]
print len(answers) #49

I am trying to get all answers by a person on quora. Any possible way? I don't want to scrape. The above code gives less answers for some reason.

http://stackoverflow.com/questions/35629695/quora-get-all-answers?noredirect=1#comment58940718_35629695

abhigenie92 avatar Feb 25 '16 14:02 abhigenie92