--- id: asyncpraw version: "8.0.3" license: Copyright (c) 2020, Joel Payne All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.… (full text in the JSON record) license_treatment: permissive maintenance: active --- # asyncpraw — Asynchronous Python Reddit API Wrapper. License: permissive · Maintenance: active · Downloads: 134.0K/mo ## What it is and what it does Async PRAW is an asynchronous wrapper around Reddit's API that lets you build non-blocking Reddit bots and tools in Python. Unlike synchronous alternatives, it uses asyncio and aiohttp to handle multiple Reddit requests concurrently without sleep calls, making it suitable for high-throughput applications. The package wraps asyncprawcore (its lower-level API client) and adds convenience methods for common tasks like fetching subreddits, posting submissions, replying to comments, and iterating over listings. You authenticate with Reddit OAuth credentials, then use async/await syntax to interact with subreddits, submissions, comments, and moderator data. The library handles Reddit's rate limits and API rules internally, so you focus on your application logic rather than compliance. It supports Python 3.10 and later, is actively maintained, and carries no known security vulnerabilities. Use it for: - Build a Reddit bot that monitors multiple subreddits and replies to posts concurrently without blocking. - Scrape Reddit data (submissions, comments, user info) efficiently for research or analysis. - Automate moderation tasks (removing spam, approving posts) across multiple communities in parallel. - Create a dashboard or alert system that fetches trending posts from multiple subreddits simultaneously. - Develop a Reddit client or third-party tool that needs responsive, non-blocking API calls. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Async PRAW provides asynchronous access to Reddit's API, allowing you to interact with subreddits, submissions, comments, and user data without blocking I/O operations. Yes. Async PRAW is actively maintained, production-stable, has no known vulnerabilities, installs with low friction, and is the right choice if you need asynchronous Reddit API access. Use it for bots, scrapers, or tools that benefit from concurrent I/O. If you only need synchronous access or are new to async Python, consider whether the async complexity is worth the performance gain for your use case. ## Install pip install asyncpraw uv add asyncpraw poetry add asyncpraw ## Installing asyncpraw Before you install: Low friction: pure Python wheel with six runtime dependencies (aiohttp, asyncprawcore, aiofiles, defusedxml, typing-extensions, update-checker). Active maintenance—last commit 2 days ago, production-stable status, supports Python 3.10 through 3.14. License in practice: Simplified BSD License (permissive): you can use, modify, and distribute this code freely in commercial and private projects, provided you retain the copyright notice and disclaimer. Quickstart: pip install asyncpraw import asyncpraw reddit = asyncpraw.Reddit( client_id="CLIENT_ID", client_secret="CLIENT_SECRET", password="PASSWORD", user_agent="USERAGENT", username="USERNAME" ) subreddit = await reddit.subreddit("test") await subreddit.submit("Test Submission", url="https://reddit.com") Requires Reddit OAuth credentials (client_id, client_secret, username, password) and Python 3.10 or later. Verify before relying: - Rate-limiting behavior and whether update-checker runs automatically on import or only on demand. - Whether defusedxml is used for all XML parsing or only in specific contexts. - Support for read-only (unauthenticated) operations without credentials. ## Package facts - License: Copyright (c) 2020, Joel Payne All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.… (full text in the JSON record) (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 134.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags reddit api async wrapper, asynchronous reddit client, async reddit api python, reddit api non-blocking, asyncio reddit wrapper, reddit async praw, reddit-api, async-io [View on SkillFed](https://skillfed.io/packages/asyncpraw) · [View on PyPI](https://pypi.org/project/asyncpraw/)