quora

class quora.Answer(data_dict)
__init__(data_dict)

Constructs the Answer object.

__str__()

Returns the answer text.

class quora.Content(data_dict)

Represent the text content/ inside of Question , Answer and other objects.

__init__(data_dict)

Construts Content.

__str__()

Returns the text representation.

parse(parse_mode='text')

Parses json into text.

class quora.Profile(user, data)

Represent the profile of a quora user.

__init__(user, data)

Constructor for Profile.

__str__()

Return str(self).

json()
class quora.Question(data_dict)
__init__(data_dict)
__str__()

Return str(self).

class quora.User(username, session=None)

Represents a Quora user.

__init__(username, session=None)
async answers()

Fetch answers of the User.

async profile()

Fetch profile of the user.