Metadata-Version: 2.1
Name: pyquora
Version: 0.4.4
Summary: Fetch profiles and data from Quora.
Home-page: https://github.com/TheShubhendra/pyquora
Author: Shubhendra Kushwaha
Author-email: shubhendrakushwaha94@gmail.com
License: MIT
Keywords: scraper,quora
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: Free For Educational Use
Classifier: License :: Free For Home Use
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# pyquora

Fetches user profiles and data from Quora.

![GitHub](https://img.shields.io/github/license/TheShubhendra/pyquora)
![PyPI - Downloads](https://img.shields.io/pypi/dm/pyquora)

![GitHub last commit](https://img.shields.io/github/last-commit/TheShubhendra/pyquora)

![Build Status](https://img.shields.io/github/workflow/status/TheShubhendra/pyquora/Python%20package)
![Requires.io (branch)](https://img.shields.io/requires/github/TheShubhendra/pyquora/master)
![GitHub repo size](https://img.shields.io/github/repo-size/TheShubhendra/pyquora)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyquora)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/pyquora)
![PyPI](https://img.shields.io/pypi/v/pyquora)
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
![PyPI - Status](https://img.shields.io/pypi/status/pyquora)
![PyPI - Format](https://img.shields.io/pypi/format/pyquora)


# installation

`pip install pyquora`

# Usage

```python
import asyncio
from quora import User

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

```
