Skip to content

Python module to help you automate & batch download media from your favourite Reddit creators ๐ŸŽจ๐Ÿ“ธ

License

Notifications You must be signed in to change notification settings

kaledgar/RedditImageDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

61 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

RedditImageDownloader ๐ŸŽจ๐Ÿ“ธ

Welcome to RedditImageDownloader, a simple Python module for effortlessly batch downloading media from Reddit! ๐ŸŒŸ

This tool leverages the Reddit API and the PRAW library to seamlessly fetch post information and download the corresponding images in async/await method.

Usage

Preliminary

  • clone the repository
git clone https://github.com/kaledgar/RedditImageDownloader
  • Create authorized reddit application, read about Reddit API and obtain the necessary credentials, such as the client ID, client secret, username, password, and user agent. Store these credentials in a JSON file user_credentials.json in your local repository that you cloned.
{
"username":"your reddit username",
"password":"pw to your reddit account",
"user_agent":"anything here",
"client_secret":"...",
"client_id":"..."
}

Run the script

  • Customize the constants.py file if needed, adjusting default file paths or other constants according to your preferences.
  • Install the required dependencies:
# Install requirements
pip install -r requirements.txt 

# Check possible cli arguments
python3 -m reddit_image_downloader -h

# Run module with your custom arguments
python3 -m reddit_image_downloader -u example_user -d 'mnt/d/Downloads'

The last command runs the script and downloads media from users given in list and saves it in separate directories.

Run with Docker

To use the "Reddit Image Downloader" with Docker, follow these steps:

  • Adjust the Dockerfile up to your preferences
# build docker image 
docker build -t reddit-image-downloader .
# run
docker run -v /your/local/directory:/app/downloads reddit-image-downloader

Pre-commit

To use pre-commit during the development run:

python3 -m venv .vev
source .venv/bin/activate
pip install pre-commit
pre-commit install

.pre-commit-config.yaml stores the pre-commit configuration.

FAQ

What is client_id and secret_id?

In authorized reddit application settings:

image

No permissions error

  1. WIN - Run the script in Powershell Admin session
  2. Linux - run script with sudo

Releases

No releases published

Packages

No packages published