From 777f8023e6c6f0f44a393798731254ca4b0454aa Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Fri, 28 Mar 2025 22:43:17 -0700 Subject: [PATCH] intake-praw: add SELF and IREDDIT filter options --- intake-praw/intake_praw/core.py | 14 +++++++++++++- intake-praw/pyproject.toml | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/intake-praw/intake_praw/core.py b/intake-praw/intake_praw/core.py index 3aca048..113d98a 100644 --- a/intake-praw/intake_praw/core.py +++ b/intake-praw/intake_praw/core.py @@ -24,7 +24,7 @@ def stderr(*args, **kwargs): def yn(s): - return s if s == "yes" or s == "no" else "--" + return s if s == "yes" or s == "no" else "" def main(): @@ -90,6 +90,8 @@ def main(): stderr("nsfw =", yn(env("NSFW"))) stderr("spoiler =", yn(env("SPOILER"))) stderr("video =", yn(env("VIDEO"))) + stderr("self =", yn(env("SELF"))) + stderr("i.reddit =", yn(env("IREDDIT"))) stderr("min score =", min_score) for post in posts: @@ -123,6 +125,16 @@ def main(): if is_spoiler: item["title"] = "[S] " + item["title"] + # Special handling for self posts + is_self = post.is_self + if (is_self and env("SELF") == "no") or (not is_self and env("SELF") == "yes"): + continue + + # Special handling for first-party image posts + is_fpimg = "i.redd" in post.url or getattr(post, "is_gallery", False) + if (is_fpimg and env("IREDDIT") == "no") or (not is_fpimg and env("IREDDIT") == "yes"): + continue + # Post score if min_score and post.score < min_score: continue diff --git a/intake-praw/pyproject.toml b/intake-praw/pyproject.toml index 7f45681..3af3d1d 100644 --- a/intake-praw/pyproject.toml +++ b/intake-praw/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "intake-praw" -version = "1.2.0" +version = "1.2.1" [project.scripts] intake-praw = "intake_praw.core:main"