8.7 KiB
Nvidia Stock Bot
🤖 Nvidia Stock Bot - A bot that alerts you in real-time about Nvidia RTX FE GPU stock availability through Discord notifications.
Note
The code was partially written and structured using a generative AI.
Github repo is a mirror of https://git.djeex.fr/Djeex/nvidia-stock-bot. You'll find full package, history and release note there.
📌 Table of Contents
- ✨ Features
- 🐳 Docker Installation without cloning the repo (quick)
- 🐙 Docker Installation with the repo (developer)
- 🐍 Python Installation (developer)
- 🖼️ Screenshots
- 🐞 Common issues
- 🧑💻 Contributors
✨ Features
- Discord
@everyone
notification on SKU change (possible imminent drop) - Discord
@everyone
notification when stock is detected, including model, price, and link - Silent Discord notification when no stock is detected
- Selectable check frequency
- Selectable GPU model
🐳 Docker Installation without the repo (quick)
Below are the instructions to set up the container using our pre-built image. With this setup, your bot will run independently as long as the container is active.
Requirements
Configuration
- Create a folder named
nvidia-stock-bot
- Create a
compose.yaml
file inside that folder with the following content:
services:
nvidia-stock-bot:
image: git.djeex.fr/djeex/nvidia-stock-bot:latest
container_name: nvidia-stock-bot
restart: unless-stopped
environment:
- PRODUCT_NAMES= # Exact GPU name (e.g. "RTX 5080, RTX 5090")
- DISCORD_ROLES= # List of Discord roles ID (e.g. "<@&12345>, <@&6789>"), in the same order than PRODUCT_NAMES values. @everyone by default.
- DISCORD_WEBHOOK_URL= # Your Discord webhook URL
- API_URL_SKU= # API listing the product
- API_URL_STOCK= # API providing stock data
- PRODUCT_URL= # GPU purchase URL
- PYTHONUNBUFFERED=1 # Enables real-time log output
command: python nvidia-stock-bot.py
Environment Variables:
|| Variable | Description | Possible Values | Default Value |
|----------------------|--------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| DISCORD_WEBHOOK_URL
| Your Discord webhook URL | A valid URL | (required) |
| PRODUCT_NAMES
| The exact GPU names you're searching for | RTX 5080, RTX 5090
| (required) |
| DISCORD_ROLES
| Discord role mentions, in the same order as PRODUCT_NAMES
. Use IDs from your server (Dev Mode enabled). | <@&12345>, <@&6789>
, @everyone
| @everyone
|
| REFRESH_TIME
| Script refresh interval (in seconds) | 60
, 30
, etc. | 30
|
| API_URL_SKU
| API endpoint listing the product SKUs | URL with locale, e.g. locale=en-gb
| https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale=fr-fr&Manufacturer=Nvidia
|
| API_URL_STOCK
| API endpoint providing stock data | URL with locale, e.g. locale=en-gb
| https://api.store.nvidia.com/partner/v1/feinventory?locale=fr-fr&skus=
|
| PRODUCT_URL
| URL to the product page | Any NVIDIA store/marketplace URL | https://marketplace.nvidia.com/fr-fr/consumer/graphics-cards/?locale=fr-fr&page=1&limit=12&manufacturer=NVIDIA
|
| TEST_MODE
| Run the bot without sending real notifications | True
, False
| False
|
| PYTHONUNBUFFERED
| Enables real-time logging output in Docker and terminals | 1
, 0
| 1
|
Run the image
Navigate to the nvidia-stock-bot
folder and launch the container:
docker compose up -d
Check logs to verify operation
docker logs -f nvidia-stock-bot
📦 Docker Installation with the repo
Instructions below show how to install the repo, build the Docker image, and launch the container. Your bot will run independently as long as the container is active.
Requirements
Clone and configure
- Clone the repo:
git clone https://git.djeex.fr/Djeex/nvidia-stock-bot.git
- Navigate to
nvidia-stock-bot
and build the Docker image:
docker build -t nvidia-stock-bot .
- Then go to
nvidia-stock-bot/docker
and edit the.env
file with:- Your Discord webhook URL
- The API and product URLs
- Stock checking frequency (default: 60s; lowering too much may get your IP blocked by Nvidia)
Run the image
Navigate to nvidia-stock-bot/docker
and launch the container:
docker compose up -d
Check logs to verify operation
docker logs -f nvidia-stock-bot
🐍 Python Installation
Instructions to directly run the Python script. Note: the bot stops when you close the terminal.
Requirements
- Python 3.11 or newer
- requests:
pip install requests
Configuration
- Clone the repo:
git clone https://git.djeex.fr/Djeex/nvidia-stock-bot.git
- Navigate to
nvidia-stock-bot
and create a virtual environment (e.g.,python3 -m venv env_name
) - Export the environment variables with your webhook and refresh time, for exemple:
export DISCORD_WEBHOOK_URL="https://your_discord_url"
export PRODUCT_NAMES=RTX 5080, RTX 5090
export DISCORD_ROLES=<@&12345>, <@&6789>
export REFRESH_TIME="60"
export API_URL_SKU="https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale=fr-fr&Manufacturer=Nvidia&gpu=RTX%205080"
export API_URL_STOCK="https://api.store.nvidia.com/partner/v1/feinventory?locale=fr-fr&skus="
export PRODUCT_URL="https://marketplace.nvidia.com/fr-fr/consumer/graphics-cards/?locale=fr-fr&page=1&limit=12&gpu=RTX%205080&manufacturer=NVIDIA"
export TEST_MODE=false
export PYTHONUNBUFFERED=1
- Run the script
python nvidia-stock-bot.py
🖼️ Screenshots
🐞 Common issues
Error when trying to reach product API url :
API_SKU_URL
may be wrong- Your IP may be blacklisted by nvidia. Try to use a VPN.
- nvidia API may be down
🧑💻 Contributors
Thanks for their contributions:
- Djeex
- KevOut
- Extreme2pac