A Small wrapper for PRAW that allows for Event-based bots
Project description
PRAWvents, Events for PRAW
A simple wrapper to write event-based bots with PRAW.
Scope
You can register event handlers for everything thats based on the praw stream_generator Any other functionality is offered as-is, since this subclasses the main PRAW Reddit instance.
A async version of this should be possible, but is not yet planned.
Quickstart
This is a simple bot that will print out the subreddit and the submission title for all posts in the subreddits AskReddit and pics, while skipping the existing posts in AskReddit. This example assumes the presence of a praw.ini in your working directory.
from prawvents import EventReddit
from praw import reddit
r = EventReddit(user_agent=f"ExampleBot for prawvents version (0.0.1) by /u/laundmo") # change the description and username!
sub1 = r.subreddit("AskReddit")
sub2 = r.subreddit("pics")
def handle_exception(e): # very dumb exception handler
print(e)
@r.register_event(sub1.stream.submissions, err_handler=handle_exception, skip_existing=True)
@r.register_event(sub2.stream.submissions, err_handler=handle_exception)
def handle(submission: reddit.Submission):
print(submission.subreddit, submission.title)
r.run_loop()
Docs
RedditEventDecorator Objects
class RedditEventDecorator()
Decorator class for event handlers.
__init__
| __init__(reddit: praw.Reddit, stream: RStream, err_handler: Callable)
Initialise RedditEventDecorator.
Arguments:
reddit
EventReddit - TheEventReddit
instancestream
RStream - The stream to which the event responds.err_handler
Callable - A function thats called with the exception as a argument.
__call__
| __call__(f: Callable) -> Callable
Set the event handler.
Arguments:
f
Callable - The event handler function.
Returns:
Callable
- The function.
EventReddit Objects
class EventReddit(praw.Reddit)
Main Reddit instance, subclass of praw.Reddit.
Arguments:
praw
praw.Reddit - Praw Reddit superclass.
__init__
| __init__(*args, **kwargs)
Initialise EventReddit. All arguments are passed through to praw.Reddit
register_event
| register_event(stream: RStream, err_handler: Callable = None, **kwargs) -> RedditEventDecorator
Register a event, should generally be used as a decorator like this:
@r.register_event(subreddit.stream.submissions, err_handler=handle_exception)
def event_handler(submission):
pass
Arguments:
stream
RStream - The stream to which the event responds.err_handler
Callable, optional - The error handler for this event. Defaults to None.
Returns:
RedditEventDecorator
- The decorator instance.
handle_exception
| handle_exception(f: Callable, e: Exception)
Handle a Exception happening in a function f
Arguments:
f
Callable - The function which threw the exception.e
Exception - The exception which was thrown.
Raises:
e
- The Exception that was thrown.
run_stream_till_none
| run_stream_till_none(stream: RStream, funcs: Iterable[Callable]) -> None
Runs a stream until none is returned
Arguments:
stream
RStream - The finalized stream to run.funcs
Iterable[Callable] - The functions which handle this stream.
run_loop
| run_loop(interweave=True) -> None
Run the event loop. If interweave is Truthy, events from multiple streams will be mixed to ensure a single high-traffic stream cant take up the entire event loop. This is highly recommended.
Arguments:
interweave
bool, optional - Whether to interweave streams to ensure fair distribution. Defaults to True.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file prawvents-0.1.tar.gz
.
File metadata
- Download URL: prawvents-0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0.post20201221 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95bd3fe810d78fe5181074ef52234f4ff0be646a11773260218aaa3b8bca1eaf |
|
MD5 | 9cc10b7ac923e3123f356c633b9ffd1f |
|
BLAKE2b-256 | c051c3814d76b52654bc142b8e199d9c7e8e5dc5bd073fe1a2d666ede96873e7 |
File details
Details for the file prawvents-0.1-py3-none-any.whl
.
File metadata
- Download URL: prawvents-0.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0.post20201221 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15eb677095db1d6f765eb1c06b4d9e8fdd09a7793a105df5a9f0972b274f092a |
|
MD5 | f0b4883463e895bcbcc522596243bf53 |
|
BLAKE2b-256 | 1421d1dd051665a731c5e7deb4527b26d95f007a7d6964fdb5d6da6f2d355cb8 |