diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..0ebd768 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 72364f9..b8f08ee 100644 --- a/.gitignore +++ b/.gitignore @@ -87,3 +87,6 @@ ENV/ # Rope project settings .ropeproject + +# Intelij +.idea/ \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 86b5eac..c04ba7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,11 @@ language: python python: - - "2.6" - - "2.7" - - "3.2" - - "3.3" - - "3.4" - - "3.5" - - "3.5-dev" # 3.5 development branch - - "nightly" # currently points to 3.6-dev + - "3.6" + - "3.7" + - "3.8" + - "3.9" + - "pypy3" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests -script: nosetests +script: "nose2 -v" diff --git a/README.md b/README.md index 4c224a7..71238c7 100644 --- a/README.md +++ b/README.md @@ -1,116 +1,262 @@ # Daily Reddit Wallpaper -[![Build Status](https://travis-ci.org/ssimunic/Daily-Reddit-Wallpaper.svg?branch=master)](https://travis-ci.org/ssimunic/Daily-Reddit-Wallpaper) -This script changes your wallpaper to most upvoted image of the day on [/r/wallpapers](https://www.reddit.com/r/wallpapers/) or from any other subreddit. +Automated, scriptable, multi‑platform Reddit wallpaper fetcher. +[![Python](https://img.shields.io/badge/Python->=3.11-blue)](https://www.python.org/) +[![License](https://img.shields.io/badge/License-MIT-green)](LICENSE) +[![Reddit API](https://img.shields.io/badge/API-Reddit-orange)](https://www.reddit.com/dev/api/) -**Run it on startup for new wallpaper on every session.** +Fetch and set a fresh wallpaper from any subreddit (default: [/r/wallpaper](https://www.reddit.com/r/wallpaper/)). Runs well as a cron/systemd/Task Scheduler job. -*Supported: Linux (gnome, kde, mate, lxde), Windows and OS X* +Supported desktops: GNOME, KDE Plasma, MATE, XFCE, LXDE/Lubuntu (pcmanfm), i3/other WM (via `feh`), macOS, Windows. -Dependencies -======= -Make sure you have [Python](https://www.python.org/downloads/) installed and PATH variable set. +## Features -Ubuntu ------- -If you don't have ```pip ``` for Python: +- Multiple sort modes: hot, top (with hour/day/week/month/year/all), new +- Flair filtering (`--flair "Desktop"`) +- Randomization within current listing (`--random`) +- NSFW opt‑in (`--nsfw`) +- Config file override (XDG config path on Linux) +- Imgur single‑image link support +- Download dedupe & resumable safe writes +- Works across common Linux DEs, macOS displays, Windows +- Lockfile (`uv.lock`) for reproducible env when using `uv` + +## Install / Setup + +Pick one method: + +### 1. uv (fast, reproducible) + +Install uv (one-time): + +```bash +curl -Ls https://astral.sh/uv/install.sh | sh ``` -sudo apt-get install python-pip + +Sync dependencies (creates `.venv`): + +```bash +uv sync ``` -You will need modules ```requests``` and ```praw``` installed, which are in requirements.txt: +Run: +```bash +uv run change_wallpaper_reddit.py --subreddit art ``` + +Upgrade (respecting version constraints): + +```bash +uv lock --upgrade && uv sync +``` + +### 2. pip (classic) + +```bash +python -m venv .venv +source .venv/bin/activate pip install -r requirements.txt +python change_wallpaper_reddit.py ``` -Windows ------- -Follow [this guide](https://pip.pypa.io/en/stable/installing/) to install ```pip``` and configure PATH variable. -The rest is the same. +### 3. pipx (isolated, if published later) + +Not yet on PyPI; for now clone & use method 1 or 2. (Future improvement: add console script entry point.) -Using script -======= +## Credentials -Simply run: +Create `credentials.json` beside the script: + +```jsonc +{ + "client_id": "YOUR_REDDIT_APP_CLIENT_ID", + "api_key": "YOUR_REDDIT_APP_SECRET" +} ``` -python /home/silvio/Scripts/change_wallpaper_reddit.py + +Or pass inline: + +```bash +uv run change_wallpaper_reddit.py --client-id XXX --api-key YYY ``` -If you wanna use other subreddit, include argument with the subreddit name: +Create a Reddit script app at . + +## Usage + +Basic: + +```bash +python change_wallpaper_reddit.py ``` -python /home/silvio/Scripts/change_wallpaper_reddit.py --subreddit art + +Top of the week from r/art, save somewhere else, random inside top 30: + +```bash +python change_wallpaper_reddit.py -s art --sort top --time week -l 30 --random -o MyWallpapers ``` -If you don't want to change your wallpaper daily, you can use newest, hourly, weekly, monthly or yearly wallpaper too by adding one of the following arguments: ```new```, ```hour```, ```week```, ```month```, ```year``` to the script. +Filter by flair (case-insensitive contains): -Example: +```bash +python change_wallpaper_reddit.py --flair "Desktop" ``` -python /home/silvio/Scripts/change_wallpaper_reddit.py --time week + +macOS main display only: + +```bash +python change_wallpaper_reddit.py --display 1 ``` -NSFW images are disabled by default, to enable them add ```--nsfw```. +Allow NSFW: -On OS X, you can specify display number with option ```--display```. Use 0 for all display (default), 1 for main display and so on. +```bash +python change_wallpaper_reddit.py --nsfw +``` -To change default location where image will be saved, use ```--output folder/subfolder```. +### All CLI Options -Running on startup -======= -Ubuntu ------- -To make managment of the script simple, we can accomplish this using built-in Startup Applications. +| Flag | Long | Type | Default | Description | +| ---- | ----------- | ---- | ---------- | ---------------------------------------------------- | +| -s | --subreddit | str | wallpaper | Subreddit name | +| -t | --time | str | all | Time filter (top only): hour/day/week/month/year/all | +| -n | --nsfw | flag | False | Enable NSFW posts | +| -d | --display | int | 0 | macOS display (0 = all) | +| -o | --output | str | Wallpapers | Relative directory inside home to store images | +| | --sort | str | hot | hot/top/new | +| -l | --limit | int | 20 | Listing fetch limit | +| -r | --random | flag | False | Shuffle the fetched list before picking | +| -f | --flair | str | (empty) | Filter by flair substring | +| | --client-id | str | | Override Reddit client id | +| | --api-key | str | | Override Reddit client secret | -![Startup Applications](http://i.imgur.com/NDFmFd9.png) +Exit codes: 0 success, non‑zero on failure (missing creds, no image, network error). +## Configuration File -Click on Add. +Optional file (Linux): `~/.config/change_wallpaper_reddit.rc` +On Windows/macOS (fallback): same directory as script. -![Add new startup command](http://i.imgur.com/uFqQ8ky.png) +Example: -Note: you can use ```--subreddit``` and ```--time``` arguments here aswell. +```ini +subreddit=wallpaper +sort=top +time=day +limit=40 +random=true +nsfw=false +flair=Desktop +output=Wallpapers +display=0 +``` +CLI flags override file values. -Windows ------- -We will be using Task Scheduler for this. You can find it in Windows search. -Once you open it, click on ```Create Basic Task``` -Follow the procedure. +## Scheduling -![Procedure](http://i.imgur.com/1uZMpyc.png) +### systemd user timer (recommended on modern Linux) -![Procedure](http://i.imgur.com/3ApvF6W.png) +`~/.config/systemd/user/reddit-wallpaper.service`: -![Procedure](http://i.imgur.com/fPdwcyg.png) +```ini +[Unit] +Description=Update Reddit wallpaper + +[Service] +Type=oneshot +WorkingDirectory=%h/path/to/Daily-Reddit-Wallpaper +ExecStart=%h/path/to/Daily-Reddit-Wallpaper/.venv/bin/python change_wallpaper_reddit.py --sort top --time day +``` -![Procedure](http://i.imgur.com/zOCCfQI.png) +`~/.config/systemd/user/reddit-wallpaper.timer`: -In ```Add arguments``` field type the location of the script. Example +```ini +[Unit] +Description=Run wallpaper updater daily +[Timer] +OnCalendar=daily +Persistent=true + +[Install] +WantedBy=timers.target ``` -"D:\change_wallpaper_reddit.py" + +Enable: + +```bash +systemctl --user daemon-reload +systemctl --user enable --now reddit-wallpaper.timer ``` -or +### Cron (legacy) +Daily at 09:00: + +```cron +0 9 * * * /usr/bin/env bash -lc 'cd "$HOME/path/to/Daily-Reddit-Wallpaper" && uv run change_wallpaper_reddit.py --sort top --time day' ``` -"D:\change_wallpaper_reddit.py" --subreddit art --time week + +Hourly: + +```cron +0 * * * * /usr/bin/env bash -lc 'cd "$HOME/path/to/Daily-Reddit-Wallpaper" && uv run change_wallpaper_reddit.py' ``` -Running every minute or hour -======= +### Windows Task Scheduler -Look into using cronjobs on Linux or Task Scheduler on Windows for performing this. +Create a basic task -> trigger (daily / logon) -> Action: Start a Program: -Configuration file -======= +Program/script: -Instead of writing arguments every time you run the script, you can also use configuration file which should be located at ```~/.config/change_wallpaper_reddit.rc```. +```text +python +``` -Example of configuration file: +Arguments: +```text +"C:\\path\\to\\change_wallpaper_reddit.py" --sort top --time day ``` -subreddit=art -time=day + +Or use a virtualenv's python path. + +## Desktop Environment Notes + +- KDE: requires `qdbus` (usually present) +- i3/WM: needs `feh` installed (`sudo apt install feh`) +- XFCE: uses `xfconf-query` +- macOS: uses AppleScript, per-display if `--display` set +- Windows: standard `SystemParametersInfoW` + +## Troubleshooting + +| Issue | Suggestion | +| ------------------------------ | --------------------------------------------------------------------- | +| No images found | Increase `--limit`, relax flair, allow NSFW if appropriate | +| Credentials error | Regenerate Reddit app secret; confirm JSON keys | +| Wallpaper not changing (Linux) | Ensure DE supported & required tools installed (`feh`, `qdbus`, etc.) | +| Cron uses old Python | Use full path to venv python or switch to systemd timer | + +Run verbose network test: + +```bash +python - <<'PY' +import requests;print(requests.get('https://www.reddit.com/.json',headers={'User-Agent':'test'}).status_code) +PY ``` + +## Contributing + +Small focused PRs welcome: docs, new DE support, packaging (entry point), tests. Open an issue first for bigger changes. Style: keep functions small & explicit. + +## License + +MIT. See `LICENSE`. + +--- + +Made better with automation & reproducibility (`uv`). diff --git a/change_wallpaper_reddit.py b/change_wallpaper_reddit.py old mode 100755 new mode 100644 index 92f67bb..6764989 --- a/change_wallpaper_reddit.py +++ b/change_wallpaper_reddit.py @@ -1,248 +1,418 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- -from __future__ import unicode_literals + import argparse -import ctypes +import json import os -import praw import platform +import random import re -import requests +import subprocess import sys -import time from configparser import ConfigParser -from io import StringIO -from collections import defaultdict - -if sys.version_info <= (2, 6): - import commands as subprocess -else: - import subprocess +from pathlib import Path + +import praw # type: ignore +import requests # type: ignore + +# Platform detection constants +PLATFORM = platform.system() +IS_LINUX = PLATFORM == "Linux" +IS_WINDOWS = PLATFORM == "Windows" +IS_DARWIN = PLATFORM == "Darwin" + +# Default configuration +DEFAULT_CONFIG = { + "subreddit": "wallpaper", + "nsfw": False, + "time": "all", + "display": "0", + "output": "Wallpapers", + "sort": "hot", + "limit": 20, + "random": False, + "flair": "", +} + +# URL regex pattern (compiled once for performance) +URL_STRIP_PATTERN = re.compile(r"\?.*") def load_config(): - default = defaultdict(str) - default["subreddit"] = "wallpapers" - default["nsfw"] = "False" - default["time"] = "day" - default["display"] = "0" - default["output"] = "Pictures/Wallpapers" - - config_path = os.path.expanduser("~/.config/change_wallpaper_reddit.rc") - section_name = "root" + """Load configuration from file or return defaults""" + config_path = ( + Path.home() / ".config" / "change_wallpaper_reddit.rc" + if IS_LINUX + else Path(sys.argv[0]).parent / "change_wallpaper_reddit.rc" + ) + try: - config = ConfigParser(default) + conf = ConfigParser(DEFAULT_CONFIG) with open(config_path, "r") as stream: - stream = StringIO("[{section_name}]\n{stream_read}".format(section_name=section_name, - stream_read=stream.read())) - if sys.version_info >= (3, 0): - config.read_file(stream) - else: - config.readfp(stream) - - ret = {} - - # Add a value to ret, printing an error message if there is an error - def add_to_ret(fun, name): + config_string = f"[root]\n{stream.read()}" + conf.read_string(config_string) + + # Build config dict with error handling + config = {} + config_mappings = [ + ("subreddit", conf.get), + ("nsfw", conf.getboolean), + ("display", conf.getint), + ("time", conf.get), + ("output", conf.get), + ("sort", conf.get), + ("limit", conf.getint), + ("random", conf.getboolean), + ("flair", conf.get), + ] + + for key, getter in config_mappings: try: - ret[name] = fun(section_name, name) - except ValueError as e: - err_str = "Error in config file. Variable '{}': {}. The default '{}' will be used." + config[key] = getter("root", key) + except (ValueError, TypeError): + config[key] = DEFAULT_CONFIG[key] - # print sys.stderr >> err_str.format(name, str(e), default[name]) - ret[name] = default[name] + return config + except IOError: + return DEFAULT_CONFIG.copy() - add_to_ret(config.get, "subreddit") - add_to_ret(config.getboolean, "nsfw") - add_to_ret(config.getint, "display") - add_to_ret(config.get, "time") - add_to_ret(config.get, "output") - - return ret - - except IOError as e: - return default config = load_config() def parse_args(): """parse args with argparse - :returns: args + :returns: arguments """ parser = argparse.ArgumentParser(description="Daily Reddit Wallpaper") - parser.add_argument("-s", "--subreddit", type=str, default=config["subreddit"], - help="Example: art, getmotivated, wallpapers, ...") - parser.add_argument("-t", "--time", type=str, default=config["time"], - help="Example: new, hour, day, week, month, year") - parser.add_argument("-n", "--nsfw", action='store_true', default=config["nsfw"], help="Enables NSFW tagged posts.") - parser.add_argument("-d", "--display", type=int, default=config["display"], - help="Desktop display number on OS X (0: all displays, 1: main display, etc") - parser.add_argument("-o", "--output", type=str, default=config["output"], - help="Set the outputfolder in the home directory to save the Wallpapers to.") - - args = parser.parse_args() - return args - - -def get_top_image(sub_reddit): + parser.add_argument( + "-s", + "--subreddit", + type=str, + default=config["subreddit"], + help="Example: art, getmotivated, wallpapers, ...", + ) + parser.add_argument( + "-t", + "--time", + type=str, + default=config["time"], + help="Time filter for 'top' sort only. Example: hour, day, week, month, year, all", + ) + parser.add_argument( + "-n", + "--nsfw", + action="store_true", + default=config["nsfw"], + help="Enables NSFW tagged posts.", + ) + parser.add_argument( + "-d", + "--display", + type=int, + default=config["display"], + help="Desktop display number on OS X (0: all displays, 1: main display, etc", + ) + parser.add_argument( + "-o", + "--output", + type=str, + default=config["output"], + help="Set the outputfolder in the home directory to save the Wallpapers to.", + ) + parser.add_argument( + "--sort", + type=str, + default=config["sort"], + help="Can be one of: hot, top, new. Note: --time only works with 'top'", + ) + parser.add_argument( + "-l", + "--limit", + type=int, + default=config["limit"], + help="Set a limit to pull posts", + ) + parser.add_argument( + "-r", + "--random", + action="store_true", + default=config["random"], + help="Randomize witin sort", + ) + parser.add_argument( + "-f", + "--flair", + type=str, + default=config["flair"], + help="Filter by flair text (e.g., 'Desktop', 'Mobile')", + ) + parser.add_argument("--client-id", type=str, help="Reddit API client ID.") + parser.add_argument( + "--api-key", type=str, help="Reddit API client secret (api key)." + ) + + arguments = parser.parse_args() + return arguments + + +def get_top_image(sub_reddit, args): """Get image link of most upvoted wallpaper of the day :sub_reddit: name of the sub reddit + :args: parsed arguments :return: the image link """ - submissions = sub_reddit.new(limit=10) if args.time == "new" else sub_reddit.hot(params={"t": args.time}, - limit=10) + # Use generator dispatch for better performance + if args.sort == "top": + submissions = sub_reddit.top(time_filter=args.time, limit=args.limit) + elif args.sort == "new": + submissions = sub_reddit.new(limit=args.limit) + else: + submissions = sub_reddit.hot(limit=args.limit) + + if args.random: + submissions = sorted(submissions, key=lambda k: random.random()) + for submission in submissions: - ret = {"id": submission.id} if not args.nsfw and submission.over_18: continue + + # Filter by flair if specified + if args.flair and ( + not submission.link_flair_text + or args.flair.lower() not in submission.link_flair_text.lower() + ): + continue + url = submission.url # Strip trailing arguments (after a '?') - url = re.sub(R"\?.*", "", url) - ret['type'] = url.split(".")[-1] - - if url.endswith(".jpg") or url.endswith(".png"): - ret["url"] = url + url = URL_STRIP_PATTERN.sub("", url) + + # Extract file extension + file_extension = url.split(".")[-1].lower() + + if url.endswith((".jpg", ".png", ".jpeg")): + return { + "id": submission.id, + "subreddit": submission.subreddit.display_name, + "url": url, + "type": file_extension, + } # Imgur support - elif ("imgur.com" in url) and ("/a/" not in url) and ("/gallery/" not in url): + elif "imgur.com" in url and "/a/" not in url and "/gallery/" not in url: if url.endswith("/new"): url = url.rsplit("/", 1)[0] - id = url.rsplit("/", 1)[1].rsplit(".", 1)[0] - ret["url"] = "http://i.imgur.com/{id}.jpg".format(id=id) - else: - continue + id_toget = url.rsplit("/", 1)[1].rsplit(".", 1)[0] + return { + "id": submission.id, + "subreddit": submission.subreddit.display_name, + "url": f"http://i.imgur.com/{id_toget}.jpg", + "type": "jpg", + } - return ret + return None def detect_desktop_environment(): """Get current Desktop Environment - http://stackoverflow.com - /questions/2035657/what-is-my-current-desktop-environment - :return: environment + :return: environment dict or None """ - environment = {} + if not IS_LINUX: + return None + + # Environment variables for detection + d_session = os.environ.get("DESKTOP_SESSION") + xdg_current_desktop = os.environ.get("XDG_CURRENT_DESKTOP") + + # KDE detection if os.environ.get("KDE_FULL_SESSION") == "true": - environment["name"] = "kde" - environment["command"] = """ - qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript ' - var allDesktops = desktops(); - print (allDesktops); - for (i=0;i= (3, 0): - ctypes.windll.user32.SystemParametersInfoW(20, 0, save_location, 3) - # Python 2.x - else: - ctypes.windll.user32.SystemParametersInfoA(20, 0, save_location, 3) - - # OS X/macOS - if platform_name.startswith("Darwin"): - if args.display == 0: - command = """ - osascript -e 'tell application "System Events" - set desktopCount to count of desktops - repeat with desktopNumber from 1 to desktopCount - tell desktop desktopNumber - set picture to "{save_location}" - end tell - end repeat - end tell' - """.format(save_location=save_location) - else: - command = """osascript -e 'tell application "System Events" - set desktopCount to count of desktops - tell desktop {display} - set picture to "{save_location}" - end tell - end tell'""".format(display=args.display, - save_location=save_location) - os.system(command) + image = get_top_image(r.subreddit(subreddit), args) + if not image: + sys.exit("Error: No suitable images were found, the program is now exiting.") + + # Download and set wallpaper + save_location = ( + Path.home() / save_dir / f"{subreddit}-{image['id']}.{image['type']}" + ) + + if download_image(image["url"], save_location): + set_wallpaper(save_location, args) else: - sys.exit("Error: Image url is not available, the program is now exiting.") + sys.exit("Error: Failed to download image.") + + +if __name__ == "__main__": + main() diff --git a/credentials.json b/credentials.json new file mode 100644 index 0000000..1214ed2 --- /dev/null +++ b/credentials.json @@ -0,0 +1,4 @@ +{ + "client_id": "XXXXXXXXX-XXXX", + "api_key": "XXXXXXXXXXXX_XXXXXX-XXXXXXX" +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..83e5cf4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[project] +name = "daily-reddit-wallpaper" +version = "0.1.0" +description = "This script changes your wallpaper to most upvoted image of the day on Reddit." +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "decorator==5.2.1", + "nose2==0.15.1", + "praw==7.8.1", + "requests==2.32.5", + "six==1.17.0", + "update-checker==0.18.0", +] diff --git a/requirements.txt b/requirements.txt index eb49937..2975809 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -decorator==4.0.10 -future==0.15.2 -praw==5.4.0 -requests==2.10.0 -six==1.10.0 -update-checker==0.11 +decorator==5.2.1 +praw==7.8.1 +requests==2.32.5 +six==1.17.0 +update-checker==0.18.0 +nose2==0.15.1 diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..8b3f6c4 --- /dev/null +++ b/uv.lock @@ -0,0 +1,195 @@ +version = 1 +revision = 3 +requires-python = ">=3.11" + +[[package]] +name = "certifi" +version = "2025.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload-time = "2025-08-03T03:07:47.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload-time = "2025-08-03T03:07:45.777Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload-time = "2025-08-09T07:57:28.46Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/b5/991245018615474a60965a7c9cd2b4efbaabd16d582a5547c47ee1c7730b/charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b256ee2e749283ef3ddcff51a675ff43798d92d746d1a6e4631bf8c707d22d0b", size = 204483, upload-time = "2025-08-09T07:55:53.12Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2a/ae245c41c06299ec18262825c1569c5d3298fc920e4ddf56ab011b417efd/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:13faeacfe61784e2559e690fc53fa4c5ae97c6fcedb8eb6fb8d0a15b475d2c64", size = 145520, upload-time = "2025-08-09T07:55:54.712Z" }, + { url = "https://files.pythonhosted.org/packages/3a/a4/b3b6c76e7a635748c4421d2b92c7b8f90a432f98bda5082049af37ffc8e3/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:00237675befef519d9af72169d8604a067d92755e84fe76492fef5441db05b91", size = 158876, upload-time = "2025-08-09T07:55:56.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e6/63bb0e10f90a8243c5def74b5b105b3bbbfb3e7bb753915fe333fb0c11ea/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:585f3b2a80fbd26b048a0be90c5aae8f06605d3c92615911c3a2b03a8a3b796f", size = 156083, upload-time = "2025-08-09T07:55:57.582Z" }, + { url = "https://files.pythonhosted.org/packages/87/df/b7737ff046c974b183ea9aa111b74185ac8c3a326c6262d413bd5a1b8c69/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e78314bdc32fa80696f72fa16dc61168fda4d6a0c014e0380f9d02f0e5d8a07", size = 150295, upload-time = "2025-08-09T07:55:59.147Z" }, + { url = "https://files.pythonhosted.org/packages/61/f1/190d9977e0084d3f1dc169acd060d479bbbc71b90bf3e7bf7b9927dec3eb/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:96b2b3d1a83ad55310de8c7b4a2d04d9277d5591f40761274856635acc5fcb30", size = 148379, upload-time = "2025-08-09T07:56:00.364Z" }, + { url = "https://files.pythonhosted.org/packages/4c/92/27dbe365d34c68cfe0ca76f1edd70e8705d82b378cb54ebbaeabc2e3029d/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:939578d9d8fd4299220161fdd76e86c6a251987476f5243e8864a7844476ba14", size = 160018, upload-time = "2025-08-09T07:56:01.678Z" }, + { url = "https://files.pythonhosted.org/packages/99/04/baae2a1ea1893a01635d475b9261c889a18fd48393634b6270827869fa34/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:fd10de089bcdcd1be95a2f73dbe6254798ec1bda9f450d5828c96f93e2536b9c", size = 157430, upload-time = "2025-08-09T07:56:02.87Z" }, + { url = "https://files.pythonhosted.org/packages/2f/36/77da9c6a328c54d17b960c89eccacfab8271fdaaa228305330915b88afa9/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1e8ac75d72fa3775e0b7cb7e4629cec13b7514d928d15ef8ea06bca03ef01cae", size = 151600, upload-time = "2025-08-09T07:56:04.089Z" }, + { url = "https://files.pythonhosted.org/packages/64/d4/9eb4ff2c167edbbf08cdd28e19078bf195762e9bd63371689cab5ecd3d0d/charset_normalizer-3.4.3-cp311-cp311-win32.whl", hash = "sha256:6cf8fd4c04756b6b60146d98cd8a77d0cdae0e1ca20329da2ac85eed779b6849", size = 99616, upload-time = "2025-08-09T07:56:05.658Z" }, + { url = "https://files.pythonhosted.org/packages/f4/9c/996a4a028222e7761a96634d1820de8a744ff4327a00ada9c8942033089b/charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:31a9a6f775f9bcd865d88ee350f0ffb0e25936a7f930ca98995c05abf1faf21c", size = 107108, upload-time = "2025-08-09T07:56:07.176Z" }, + { url = "https://files.pythonhosted.org/packages/e9/5e/14c94999e418d9b87682734589404a25854d5f5d0408df68bc15b6ff54bb/charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1", size = 205655, upload-time = "2025-08-09T07:56:08.475Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a8/c6ec5d389672521f644505a257f50544c074cf5fc292d5390331cd6fc9c3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0cacf8f7297b0c4fcb74227692ca46b4a5852f8f4f24b3c766dd94a1075c4884", size = 146223, upload-time = "2025-08-09T07:56:09.708Z" }, + { url = "https://files.pythonhosted.org/packages/fc/eb/a2ffb08547f4e1e5415fb69eb7db25932c52a52bed371429648db4d84fb1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c6fd51128a41297f5409deab284fecbe5305ebd7e5a1f959bee1c054622b7018", size = 159366, upload-time = "2025-08-09T07:56:11.326Z" }, + { url = "https://files.pythonhosted.org/packages/82/10/0fd19f20c624b278dddaf83b8464dcddc2456cb4b02bb902a6da126b87a1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cfb2aad70f2c6debfbcb717f23b7eb55febc0bb23dcffc0f076009da10c6392", size = 157104, upload-time = "2025-08-09T07:56:13.014Z" }, + { url = "https://files.pythonhosted.org/packages/16/ab/0233c3231af734f5dfcf0844aa9582d5a1466c985bbed6cedab85af9bfe3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f", size = 151830, upload-time = "2025-08-09T07:56:14.428Z" }, + { url = "https://files.pythonhosted.org/packages/ae/02/e29e22b4e02839a0e4a06557b1999d0a47db3567e82989b5bb21f3fbbd9f/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:027b776c26d38b7f15b26a5da1044f376455fb3766df8fc38563b4efbc515154", size = 148854, upload-time = "2025-08-09T07:56:16.051Z" }, + { url = "https://files.pythonhosted.org/packages/05/6b/e2539a0a4be302b481e8cafb5af8792da8093b486885a1ae4d15d452bcec/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:42e5088973e56e31e4fa58eb6bd709e42fc03799c11c42929592889a2e54c491", size = 160670, upload-time = "2025-08-09T07:56:17.314Z" }, + { url = "https://files.pythonhosted.org/packages/31/e7/883ee5676a2ef217a40ce0bffcc3d0dfbf9e64cbcfbdf822c52981c3304b/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cc34f233c9e71701040d772aa7490318673aa7164a0efe3172b2981218c26d93", size = 158501, upload-time = "2025-08-09T07:56:18.641Z" }, + { url = "https://files.pythonhosted.org/packages/c1/35/6525b21aa0db614cf8b5792d232021dca3df7f90a1944db934efa5d20bb1/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320e8e66157cc4e247d9ddca8e21f427efc7a04bbd0ac8a9faf56583fa543f9f", size = 153173, upload-time = "2025-08-09T07:56:20.289Z" }, + { url = "https://files.pythonhosted.org/packages/50/ee/f4704bad8201de513fdc8aac1cabc87e38c5818c93857140e06e772b5892/charset_normalizer-3.4.3-cp312-cp312-win32.whl", hash = "sha256:fb6fecfd65564f208cbf0fba07f107fb661bcd1a7c389edbced3f7a493f70e37", size = 99822, upload-time = "2025-08-09T07:56:21.551Z" }, + { url = "https://files.pythonhosted.org/packages/39/f5/3b3836ca6064d0992c58c7561c6b6eee1b3892e9665d650c803bd5614522/charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc", size = 107543, upload-time = "2025-08-09T07:56:23.115Z" }, + { url = "https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe", size = 205326, upload-time = "2025-08-09T07:56:24.721Z" }, + { url = "https://files.pythonhosted.org/packages/71/11/98a04c3c97dd34e49c7d247083af03645ca3730809a5509443f3c37f7c99/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8", size = 146008, upload-time = "2025-08-09T07:56:26.004Z" }, + { url = "https://files.pythonhosted.org/packages/60/f5/4659a4cb3c4ec146bec80c32d8bb16033752574c20b1252ee842a95d1a1e/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9", size = 159196, upload-time = "2025-08-09T07:56:27.25Z" }, + { url = "https://files.pythonhosted.org/packages/86/9e/f552f7a00611f168b9a5865a1414179b2c6de8235a4fa40189f6f79a1753/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31", size = 156819, upload-time = "2025-08-09T07:56:28.515Z" }, + { url = "https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f", size = 151350, upload-time = "2025-08-09T07:56:29.716Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a9/3865b02c56f300a6f94fc631ef54f0a8a29da74fb45a773dfd3dcd380af7/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927", size = 148644, upload-time = "2025-08-09T07:56:30.984Z" }, + { url = "https://files.pythonhosted.org/packages/77/d9/cbcf1a2a5c7d7856f11e7ac2d782aec12bdfea60d104e60e0aa1c97849dc/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9", size = 160468, upload-time = "2025-08-09T07:56:32.252Z" }, + { url = "https://files.pythonhosted.org/packages/f6/42/6f45efee8697b89fda4d50580f292b8f7f9306cb2971d4b53f8914e4d890/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5", size = 158187, upload-time = "2025-08-09T07:56:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/70/99/f1c3bdcfaa9c45b3ce96f70b14f070411366fa19549c1d4832c935d8e2c3/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc", size = 152699, upload-time = "2025-08-09T07:56:34.739Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ad/b0081f2f99a4b194bcbb1934ef3b12aa4d9702ced80a37026b7607c72e58/charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce", size = 99580, upload-time = "2025-08-09T07:56:35.981Z" }, + { url = "https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef", size = 107366, upload-time = "2025-08-09T07:56:37.339Z" }, + { url = "https://files.pythonhosted.org/packages/8e/91/b5a06ad970ddc7a0e513112d40113e834638f4ca1120eb727a249fb2715e/charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15", size = 204342, upload-time = "2025-08-09T07:56:38.687Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ec/1edc30a377f0a02689342f214455c3f6c2fbedd896a1d2f856c002fc3062/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db", size = 145995, upload-time = "2025-08-09T07:56:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/17/e5/5e67ab85e6d22b04641acb5399c8684f4d37caf7558a53859f0283a650e9/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d", size = 158640, upload-time = "2025-08-09T07:56:41.311Z" }, + { url = "https://files.pythonhosted.org/packages/f1/e5/38421987f6c697ee3722981289d554957c4be652f963d71c5e46a262e135/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096", size = 156636, upload-time = "2025-08-09T07:56:43.195Z" }, + { url = "https://files.pythonhosted.org/packages/a0/e4/5a075de8daa3ec0745a9a3b54467e0c2967daaaf2cec04c845f73493e9a1/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa", size = 150939, upload-time = "2025-08-09T07:56:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/02/f7/3611b32318b30974131db62b4043f335861d4d9b49adc6d57c1149cc49d4/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049", size = 148580, upload-time = "2025-08-09T07:56:46.684Z" }, + { url = "https://files.pythonhosted.org/packages/7e/61/19b36f4bd67f2793ab6a99b979b4e4f3d8fc754cbdffb805335df4337126/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0", size = 159870, upload-time = "2025-08-09T07:56:47.941Z" }, + { url = "https://files.pythonhosted.org/packages/06/57/84722eefdd338c04cf3030ada66889298eaedf3e7a30a624201e0cbe424a/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92", size = 157797, upload-time = "2025-08-09T07:56:49.756Z" }, + { url = "https://files.pythonhosted.org/packages/72/2a/aff5dd112b2f14bcc3462c312dce5445806bfc8ab3a7328555da95330e4b/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16", size = 152224, upload-time = "2025-08-09T07:56:51.369Z" }, + { url = "https://files.pythonhosted.org/packages/b7/8c/9839225320046ed279c6e839d51f028342eb77c91c89b8ef2549f951f3ec/charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce", size = 100086, upload-time = "2025-08-09T07:56:52.722Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7a/36fbcf646e41f710ce0a563c1c9a343c6edf9be80786edeb15b6f62e17db/charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c", size = 107400, upload-time = "2025-08-09T07:56:55.172Z" }, + { url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload-time = "2025-08-09T07:57:26.864Z" }, +] + +[[package]] +name = "daily-reddit-wallpaper" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "decorator" }, + { name = "nose2" }, + { name = "praw" }, + { name = "requests" }, + { name = "six" }, + { name = "update-checker" }, +] + +[package.metadata] +requires-dist = [ + { name = "decorator", specifier = "==5.2.1" }, + { name = "nose2", specifier = "==0.15.1" }, + { name = "praw", specifier = "==7.8.1" }, + { name = "requests", specifier = "==2.32.5" }, + { name = "six", specifier = "==1.17.0" }, + { name = "update-checker", specifier = "==0.18.0" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "nose2" +version = "0.15.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/a6/f29c21026c40476ce3994ac55e16ef60b9c1d2a88d02c3fc20b07d253dab/nose2-0.15.1.tar.gz", hash = "sha256:36770f519df5becd3cbfe0bee4abbfbf9b9f6b4eb4e03361d282b7efcfc4f0df", size = 169809, upload-time = "2024-06-01T03:20:11.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/e6/6babe53a1dbfa55f6d30eb7408f4c4994658e5f27e3dbbb2b437912e5a32/nose2-0.15.1-py3-none-any.whl", hash = "sha256:564450c0c4f1602dfe171902ceb4726cc56658af7a620ae1826f1ffc86b09a86", size = 211274, upload-time = "2024-06-01T03:20:04.423Z" }, +] + +[[package]] +name = "praw" +version = "7.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "prawcore" }, + { name = "update-checker" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/52/7dd0b3d9ccb78e90236420ef6c51b6d9b2400a7229442f0cfcf2258cce21/praw-7.8.1.tar.gz", hash = "sha256:3c5767909f71e48853eb6335fef7b50a43cbe3da728cdfb16d3be92904b0a4d8", size = 154106, upload-time = "2024-10-25T21:49:33.16Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/ca/60ec131c3b43bff58261167045778b2509b83922ce8f935ac89d871bd3ea/praw-7.8.1-py3-none-any.whl", hash = "sha256:15917a81a06e20ff0aaaf1358481f4588449fa2421233040cb25e5c8202a3e2f", size = 189338, upload-time = "2024-10-25T21:49:31.109Z" }, +] + +[[package]] +name = "prawcore" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/62/d4c99cf472205f1e5da846b058435a6a7c988abf8eb6f7d632a7f32f4a77/prawcore-2.4.0.tar.gz", hash = "sha256:b7b2b5a1d04406e086ab4e79988dc794df16059862f329f4c6a43ed09986c335", size = 15862, upload-time = "2023-10-01T23:30:49.408Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/5c/8af904314e42d5401afcfaff69940dc448e974f80f7aa39b241a4fbf0cf1/prawcore-2.4.0-py3-none-any.whl", hash = "sha256:29af5da58d85704b439ad3c820873ad541f4535e00bb98c66f0fbcc8c603065a", size = 17203, upload-time = "2023-10-01T23:30:47.651Z" }, +] + +[[package]] +name = "requests" +version = "2.32.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "update-checker" +version = "0.18.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/0b/1bec4a6cc60d33ce93d11a7bcf1aeffc7ad0aa114986073411be31395c6f/update_checker-0.18.0.tar.gz", hash = "sha256:6a2d45bb4ac585884a6b03f9eade9161cedd9e8111545141e9aa9058932acb13", size = 6699, upload-time = "2020-08-04T07:08:50.429Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ba/8dd7fa5f0b1c6a8ac62f8f57f7e794160c1f86f31c6d0fb00f582372a3e4/update_checker-0.18.0-py3-none-any.whl", hash = "sha256:cbba64760a36fe2640d80d85306e8fe82b6816659190993b7bdabadee4d4bbfd", size = 7008, upload-time = "2020-08-04T07:08:49.51Z" }, +] + +[[package]] +name = "urllib3" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e6/30/fba0d96b4b5fbf5948ed3f4681f7da2f9f64512e1d303f94b4cc174c24a5/websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da", size = 54648, upload-time = "2024-04-23T22:16:16.976Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526", size = 58826, upload-time = "2024-04-23T22:16:14.422Z" }, +]