Metadata-Version: 2.1
Name: RedditReader
Version: 1.0
Summary: RedditReader is a package to get random images from any Subreddit available on Reddit.
Home-page: https://www.google.com
Author: toxicrecker
Author-email: reck.channel.mainlead@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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

# RedditReader
RedditReader is a package to get random images from any Subreddit available on Reddit.

# Usage
## Subreddit Class
```python
from RedditReader import Subreddit

meme = Subreddit("memes")
meme.get_random()
url = meme.url
print(url)

> https://i.redd.it/tunx3ghxjqb51.jpg
```

Attributes available for RedditReader.Subreddit obejct -
```
url - Returns submission url
title - Returns submission title
upvotes - Returns upvote count of the submission
comments - Returns comment count of the submission
```

