14 lines
495 B
Python
14 lines
495 B
Python
"""Python Reddit API Wrapper.
|
|
|
|
PRAW, an acronym for "Python Reddit API Wrapper", is a python package that allows for
|
|
simple access to Reddit's API. PRAW aims to be as easy to use as possible and is
|
|
designed to follow all of Reddit's API rules. You have to give a useragent, everything
|
|
else is handled by PRAW so you needn't worry about violating them.
|
|
|
|
More information about PRAW can be found at https://github.com/praw-dev/praw.
|
|
|
|
"""
|
|
|
|
from .const import __version__
|
|
from .reddit import Reddit
|