skillfed

redditwarp

A library for interacting with the Reddit API.

redditwarp v1.3.0 178.5K downloads/30d#10,191 on PyPI
Permissive license MIT DORMANT released

What it is and what it does

RedditWarp is a Python library that wraps the Reddit API with a focus on type safety, discoverability, and ease of use. It provides both synchronous and asynchronous clients to fetch submissions, comments, user data, and perform authenticated actions like posting and replying. The library handles OAuth2 authentication, automatic rate limiting, and includes utilities for comment tree traversal and listing pagination.

The package is designed for developers building Reddit bots, data analysis tools, or applications that need programmatic access to Reddit. It offers a consistent interface across sync and async modes, formal data structures for complex operations, and CLI utilities for token management. With zero runtime dependencies, it installs cleanly and works across modern Python versions.

Use it for:

  • Build a Reddit bot that monitors a subreddit and replies to posts matching certain criteria.
  • Scrape Reddit data for research or analysis, fetching submissions, comments, and user profiles.
  • Stream new submissions from a subreddit in real-time using the async streaming framework.
  • Automate Reddit account tasks like posting, replying, and managing saved items with OAuth2 authentication.
  • Analyze comment threads by traversing the comment tree structure with formal pagination support.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

RedditWarp is a Python wrapper for the Reddit API that provides type-complete, synchronous and asynchronous access to Reddit's data and operations with automatic rate limit handling.

Yes, if you need a type-safe Reddit API wrapper and can tolerate dormant maintenance. The library is marked Production/Stable, has zero dependencies, and covers a wide range of Reddit operations. However, verify that recent Reddit API changes have not broken authentication or core endpoints, and be prepared to maintain a fork if critical bugs emerge.

Install

redditwarp on PyPI

pip

pip install redditwarp

uv

uv add redditwarp

poetry

poetry add redditwarp

Installing redditwarp

Before you install

Low install friction with no runtime dependencies. Maintenance is dormant—last release was 774 days ago—so expect no active bug fixes or feature updates, though the codebase is marked Production/Stable.

License in practice

MIT license is permissive, allowing commercial and private use with minimal restrictions; you may use, modify, and distribute RedditWarp freely as long as you include the original license notice.

Quickstart

pip install redditwarp

import redditwarp.SYNC
client = redditwarp.SYNC.Client()
it = client.p.front.pull.hot(5)
for subm in list(it):
    print(f"r/{subm.subreddit.name} | {subm.id36} | {subm.title}")

Requires Python 3.8 or later; type annotations use 3.9 features; code examples assume 3.10.

Verify before relying

  • Whether the dormant maintenance status affects compatibility with recent Reddit API changes or OAuth2 token handling.
  • Whether async support is production-ready or has known limitations compared to the sync API.
  • Performance characteristics and rate-limit behavior under heavy load.

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance dormant — 774 days since the last release
First released
Downloads 178,504/month — #10,191 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: redditwarp-1.3.0-py3-none-any.whl

Keywords: reddit, api, wrapper

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Software Development :: LibrariesTopic :: Software Development :: Libraries :: Python ModulesTyping :: Typed

Tags

reddit api wrapper pythonreddit client libraryasync reddit apireddit data scrapingreddit bot frameworktype-safe reddit apireddit streaming
reddit-apiasync-supporttype-safe

More Libraries packages