Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.18 KB

README.md

File metadata and controls

37 lines (26 loc) · 1.18 KB

pyquora

Fetches user profiles and data from Quora.

GitHub PyPI - Downloads

GitHub last commit

Build Status Requires.io (branch) GitHub repo size PyPI - Python Version PyPI - Wheel PyPI made-with-python PyPI - Status PyPI - Format

installation

pip install pyquora

Usage

import asyncio
from quora import User

async def main():
    user = User(<Quora-Username>)
    profile = await user.profile()
    print(profile.followerCount)
asyncio.run(main())