Reddit and python, made simple.
Project description
py-reddit
A package that can be used to get reddit submissions, and their various attributes. The package supports both synchronous and asynchronous development. I am more familiar with synchronous programming, but have tried my best at making a good asynchronous implementation. The package is written in Python 3.10, and uses requests and aiohttp as its main dependencies.
Updates will be coming soon, thank you for viewing this package, please consider using it.
Version - 1.1.4
Socials - KING7077 - GitHub
Installation methods:
pip3 install py-reddit
py -3 -m pip install py-reddit
python3 -m pip install py-reddit
Example usage:
import reddit
client = reddit.Client('agent', 'key')
subreddit = client.Subreddit('top', 'subreddit-here') # supports 'top', 'new' or 'hot' type of submissions
print(subreddit.selftext(0)) #gets the selftext of the first post here
Asynchronus client:
import reddit
import asyncio
client = reddit.AsyncClient()
subreddit = client.Subreddit('top', 'subreddit-here') # supports 'top', 'new' or 'hot' type of submissions
async def main():
print(await subreddit.selftext(0))
asyncio.run(main())
The package is still under active development
CHANGELOG
February 21, 2022
You can now specify the number of posts you want to fetch in Client.Subreddit() and AsyncClient.Subreddit(). For example:
import reddit
subreddit = reddit.Client('agent', 'key').Subreddit('top', 'memes', 100) # To fetch 100 posts. If a limit is not specified, it defaults to 25
Similar for the Async Client
limit does not follow a zero index, but all the methods under Subreddit() follow zero index. This may be changed sooner or later
- 1.1.4
February 20, 2022
Bettered the asynchronous implementation of the project. Much faster now. Renamed Client.Subreddit.url to Client.Subreddit.post_url, the same change for the asynchronous client - 1.1.3
February 19, 2022
Minor changes to the description of the project - 1.1.2
February 19, 2022
Minor changes to the description of the project - 1.1.1
February 19, 2022
The project actually works now - 1.1.0
February 18, 2022
Minor changes to make the project more usuable - 1.0.6
February 18, 2022
Minor changes to make the project more usuable - 1.0.5
February 18, 2022
Minor changes to make the project more usuable - 1.0.4
February 18, 2022
Minor changes to make the project more usuable - 1.0.3
February 18, 2022
Minor changes to the description of the project - 1.0.2
February 18, 2022
Initial release - 1.0.1
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 py-reddit-1.1.4.tar.gz
.
File metadata
- Download URL: py-reddit-1.1.4.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.47.0 importlib-metadata/4.11.1 keyring/21.2.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0467f52c24601c0291a9ee137876be751d8e0e3f3be9fa356ecfeb80e77eb015 |
|
MD5 | 790b76a83cdc786c0154be1c28023c57 |
|
BLAKE2b-256 | b84a76b180321c2ec1feaafc6b1bf4739364a3b791b105ef74a87decd6cc7c46 |
File details
Details for the file py_reddit-1.1.4-py3-none-any.whl
.
File metadata
- Download URL: py_reddit-1.1.4-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.47.0 importlib-metadata/4.11.1 keyring/21.2.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b542290057ac01aa01765e00159023fc05c39a4aaf4f5c17a11ede816aa632e6 |
|
MD5 | 62dc481bc0ddcf30dc3bbfa2eb35815e |
|
BLAKE2b-256 | cbedf76794b3528a352dffb3823862c898e57365ae813ceb4baeb239594c5bb6 |