Metadata-Version: 2.1
Name: redditeasy
Version: 0.1.6
Summary: RedditEasy is an API wrapper for the Reddit JSON API
Home-page: https://github.com/MakufonSkifto/RedditEasy
Author: MakufonSkifto
Author-email: emirsurmen@gmail.com
License: MIT
Description: [![Documentation Status](https://readthedocs.org/projects/redditeasy/badge/?version=latest)](https://redditeasy.readthedocs.io/en/latest/?badge=latest)
        [![License](https://img.shields.io/github/license/MakufonSkifto/redditeasy)](LICENSE.md)
        [![GitHub stars](https://img.shields.io/github/stars/MakufonSkifto/redditeasy)](https://github.com/ExpDev07/coronavirus-tracker-api/stargazers) 
        [![PyPI version](https://badge.fury.io/py/redditeasy.svg)](https://badge.fury.io/py/redditeasy)
        
        # RedditEasy
        
        RedditEasy is an API wrapper for the Reddit JSON API
        
        ## Install
        To install RedditEasy, do:
        
        ``pip install redditeasy`` 
        
        OR
        
        ``python -m pip install redditeasy``
        
        ## Documentation
        Docs can be found [here](https://redditeasy.readthedocs.io/en/latest/)
        
        ## Usage
        
        ```python
        import redditeasy
        
        post = redditeasy.Subreddit("memes")
        postoutput = post.get_post()
        
        print(f"Posts Title: {postoutput.title}\n"
              f"Posts Content: {postoutput.content}\n"
              f"Post Created At: {postoutput.created_at}\n"
              f"Posts Upvote Count: {postoutput.score}\n"
              f"Posts Award Count: {postoutput.total_awards}\n"
              f"NSFW?: {postoutput.nsfw}")
        ```
        
        More examples are in the [examples folder](https://github.com/MakufonSkifto/RedditEasy/tree/main/examples)
        
        ## Errors
        
        The module will raise ``IndexError`` if the given user / subreddit is not found
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
