Metadata-Version: 2.1
Name: reddit-comment-scrapper
Version: 0.2.0
Summary: Scrape Reddit Comments as a graph structure
Author: Prarabdha
Author-email: prabodhkumarsrivastav70@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: praw (>=7.6.1,<8.0.0)
Requires-Dist: typer[all] (>=0.7.0,<0.8.0)
Description-Content-Type: text/markdown

# Usage

Run 
```
pip install reddit-comment-scrapper
```

Provide the details
```
reddit-comment-scrapper Reddit_ID Reddit_Secret name_subreddit post_category , number_of_posts

## Structure of JSON File

- Each Submission has two entries
    - Submission Body
    - List of Dictionary of top level Replies 
- Each reply has 3 enteries
    - id of reply
    - Body of Reply
    - List of Dictionary of second level Replies

And this goes on Recursively in a depth first search manner till a reply with no further reply is found

JSON File always stored in a comments.json
