Metadata-Version: 2.4
Name: reddit-scraper-tool
Version: 0.1.0
Summary: A Python package for scraping Reddit user data.
Home-page: https://github.com/ininike/reddit-scraper
Author: Inioluwa Adenaike
Author-email: inioluwadenaike@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Reddit Scraper

A Python package for scraping user data from Reddit. This package provides functionality to search for Reddit users and scrape their submitted posts, comments, and other relevant data.

## Features

- Search for Reddit users based on a query.
- Scrape user data including submitted posts, comments, and media.
- Asynchronous implementation for efficient data fetching.

## Installation

You can install the package using pip:

```
pip install reddit-scraper
```

## Usage

Here is a simple example of how to use the `RedditScraper` class:

```python
from reddit_scraper.reddit_scraper import RedditScraper
import asyncio

async def main():
    scraper = RedditScraper()
    users = await scraper.search_reddit_users("OpenAI")
    print(users)

    user_data = await scraper.scrape_user_data("pokimane")
    print(user_data)

asyncio.run(main())
```

## Running Tests

To run the tests for this package, navigate to the project directory and run:

```
pytest
```

## License

This project is licensed under the MIT License. See the LICENSE file for more details.
