Collection of Python and Bash scripts for household automation tasks.
- photo_organizer.py - Organize photos by year/month/day using EXIF metadata (moves files)
- reddit_scraper.py - Download images from Reddit user submissions with pagination
- verify_backup.sh - Verify backup integrity with SHA-1 hash comparison (very slow)
# Install Python dependencies
pip install exifread requests
# Organize photos by date
cd /path/to/photos
python photo_organizer.py # Uses current directory by default
# Scrape Reddit user images
python reddit_scraper.py # Edit script first: set username
# Verify backup
./verify_backup.sh # Edit script first: set source/dest pathsWarning: Scripts may have hardcoded paths - customize before running. Some operations are destructive (file moves).
See CLAUDE.md for detailed usage instructions, configuration, workflows, and safety warnings.