Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
004d227fd1 | |||
40d83cad12 | |||
fc15c6fbbe | |||
0c77df266f | |||
4cd15d9bcc | |||
3ba8c86b53 | |||
c5a280d911 |
23
README.md
23
README.md
@ -28,12 +28,13 @@
|
|||||||
## ✨ Features
|
## ✨ Features
|
||||||
|
|
||||||
- Selectable GPU models
|
- Selectable GPU models
|
||||||
|
- Selectable country marketplace to check. It will set notifications language and currency accordingly
|
||||||
- Discord `@everyone` or specified role on SKU change (possible imminent drop)
|
- Discord `@everyone` or specified role on SKU change (possible imminent drop)
|
||||||
- Discord `@everyone` or specified role notification when stock is detected, including model, price, and link
|
- Discord `@everyone` or specified role notification when stock is detected, including model, price, and link
|
||||||
- Silent Discord notification when no stock is detected
|
- Silent Discord notification when no stock is detected
|
||||||
- Selectable notification language
|
- Selectable notification server name in notification footer
|
||||||
- Selectable notification server name in footer
|
|
||||||
- Selectable check frequency
|
- Selectable check frequency
|
||||||
|
- Test mode to check without sending notifications
|
||||||
|
|
||||||
## 🐳 Docker Installation without the repo (quick)
|
## 🐳 Docker Installation without the repo (quick)
|
||||||
|
|
||||||
@ -55,11 +56,9 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
# Minimal environment variables
|
# Minimal environment variables
|
||||||
- PRODUCT_NAMES= # Exact GPU name (e.g. "RTX 5080, RTX 5090")
|
- PRODUCT_NAMES= # Exact GPU name (e.g. 'RTX 5080, RTX 5090')
|
||||||
- DISCORD_WEBHOOK_URL= # Your Discord webhook URL
|
- DISCORD_WEBHOOK_URL= # Your Discord webhook URL
|
||||||
- API_URL_SKU= # API listing the product for your country
|
- COUNTRY= # Set your country (e.g. 'US')
|
||||||
- API_URL_STOCK= # API providing stock data for your country
|
|
||||||
- PRODUCT_URL= # GPU purchase URL for your country
|
|
||||||
- PYTHONUNBUFFERED=1 # Enables real-time log output
|
- PYTHONUNBUFFERED=1 # Enables real-time log output
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -69,13 +68,13 @@ services:
|
|||||||
|---------------------|-------------------------------------------------|------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
|
|---------------------|-------------------------------------------------|------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
|
||||||
| `PRODUCT_NAMES` | The exact GPU names you're searching for | `RTX 5080, RTX 5090` | |
|
| `PRODUCT_NAMES` | The exact GPU names you're searching for | `RTX 5080, RTX 5090` | |
|
||||||
| `DISCORD_WEBHOOK_URL` | Your Discord webhook URL | A valid URL | |
|
| `DISCORD_WEBHOOK_URL` | Your Discord webhook URL | A valid URL | |
|
||||||
|
| `COUNTRY` | Your country (only one). API localization, Discord notification currency and language will be set accordingly | `GB`, `US`, `CA`, `BE`, `NL`, `DK`, `DE`, `ES`, `FR`, `IT`, `NO`, `AT`, `PL`, `FI`, `SE`, `KR`, `JP` | `US` |
|
||||||
| `DISCORD_SERVER_NAME` | The name of your server, displayed in notification's footer | A text | Shared for free |
|
| `DISCORD_SERVER_NAME` | The name of your server, displayed in notification's footer | A text | Shared for free |
|
||||||
| `DISCORD_NOTIFICATION_LANGUAGE` | Your language for notification's content | `bg`, `cs`, `da`, `de`, `el`, `en`, `es`, `et`, `fi`, `fr`, `ga`, `hr`, `hu`, `it`, `lt`, `lv`, `mt`, `nl`, `pl`, `pt`, `ro`, `sk`, `sl`, `sv` | `en` |
|
|
||||||
| `DISCORD_ROLES` | List of Discord roles ID in the same order than `PRODUCT_NAMES` values, found in your discord server settings (with user profile developer mode enabled) | `<@&12345><@&6789>` | @everyone |
|
| `DISCORD_ROLES` | List of Discord roles ID in the same order than `PRODUCT_NAMES` values, found in your discord server settings (with user profile developer mode enabled) | `<@&12345><@&6789>` | @everyone |
|
||||||
| `REFRESH_TIME` | Script refresh interval in seconds | `60`, `30`, etc. | `30` |
|
| `REFRESH_TIME` | Script refresh interval in seconds | `60`, `30`, etc. | `30` |
|
||||||
| `API_URL_SKU` | API listing the product | A URL. API url can change over time. For now, you can use the default one and change the `locale` parameter to yours (e.g. `locale=en-gb`) | `https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale=fr-fr&Manufacturer=Nvidia` |
|
| `API_URL_SKU` | API listing the product. Use it for development purpose. __Warning__ : it will override the locale set by `COUNTRY`. | An URL | https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale={locale}&Manufacturer=Nvidia` |
|
||||||
| `API_URL_STOCK` | API providing stock data | A URL. API url can change over time. For now, you can use the default one and change the `locale` parameter to yours (e.g. `locale=en-gb`) | `https://api.store.nvidia.com/partner/v1/feinventory?locale=fr-fr&skus=` |
|
| `API_URL_STOCK` | API providing stock data. Use it for development purpose. __Warning__ : it will override the locale set by `COUNTRY`. | A URL | `https://api.store.nvidia.com/partner/v1/feinventory?locale={locale}&skus=` |
|
||||||
| `PRODUCT_URL` | GPU purchase URL. There isn't any direct link workinf right now, so put the generic marketplace url listing all FE products | A URL. API url can change over time. For now, you can use the default one and change the locale parameter to yours (e.g. `/en-gb/`) | `https://marketplace.nvidia.com/fr-fr/consumer/graphics-cards/?locale=fr-fr&page=1&limit=12&manufacturer=NVIDIA` |
|
| `PRODUCT_URL` | GPU purchase URL. Use it for development purpose. __Warning__ : it will override the locale set by `COUNTRY`. | A URL | `https://marketplace.nvidia.com/fr-fr/consumer/graphics-cards/?locale={locale}&page=1&limit=12&manufacturer=NVIDIA` |
|
||||||
| `TEST_MODE` | For testing without sending notifications | `True`, `False` | `False` |
|
| `TEST_MODE` | For testing without sending notifications | `True`, `False` | `False` |
|
||||||
| `PYTHONUNBUFFERED` | Enables real-time log output | `1`, `0` | `1` |
|
| `PYTHONUNBUFFERED` | Enables real-time log output | `1`, `0` | `1` |
|
||||||
|
|
||||||
@ -151,12 +150,10 @@ git clone https://git.djeex.fr/Djeex/nvidia-stock-bot.git
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
export DISCORD_WEBHOOK_URL="https://your_discord_url"
|
export DISCORD_WEBHOOK_URL="https://your_discord_url"
|
||||||
|
export COUNTRY=€
|
||||||
export PRODUCT_NAMES=RTX 5080, RTX 5090
|
export PRODUCT_NAMES=RTX 5080, RTX 5090
|
||||||
export DISCORD_ROLES=<@&12345>, <@&6789>
|
export DISCORD_ROLES=<@&12345>, <@&6789>
|
||||||
export REFRESH_TIME="60"
|
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 TEST_MODE=false
|
||||||
export PYTHONUNBUFFERED=1
|
export PYTHONUNBUFFERED=1
|
||||||
```
|
```
|
||||||
|
@ -4,24 +4,32 @@ import logging
|
|||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
VERSION = "4.0.0"
|
||||||
|
|
||||||
# Logger setup
|
# Logger setup
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
level=logging.INFO,
|
level=logging.INFO,
|
||||||
format="%(asctime)s [%(levelname)s] %(message)s",
|
format="%(asctime)s [%(levelname)s] %(message)s",
|
||||||
)
|
)
|
||||||
logging.info("Script started")
|
|
||||||
|
|
||||||
try:
|
# Logging starter
|
||||||
|
logging.info("=" * 60)
|
||||||
|
logging.info("🟩 Nvidia Stock Bot - Version %s", VERSION)
|
||||||
|
logging.info("Source: https://git.djeex.fr/Djeex/nvidia-stock-bot")
|
||||||
|
logging.info("Mirror: https://github.com/Djeex/nvidia-stock-bot")
|
||||||
|
logging.info("=" * 60)
|
||||||
|
|
||||||
# Env variables
|
# Env variables
|
||||||
|
try:
|
||||||
DISCORD_WEBHOOK_URL = os.environ['DISCORD_WEBHOOK_URL']
|
DISCORD_WEBHOOK_URL = os.environ['DISCORD_WEBHOOK_URL']
|
||||||
DISCORD_SERVER_NAME = os.environ.get('DISCORD_SERVER_NAME', 'Shared for free')
|
DISCORD_SERVER_NAME = os.environ.get('DISCORD_SERVER_NAME', 'Shared for free')
|
||||||
API_URL_SKU = os.environ.get('API_URL_SKU', 'https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale=fr-fr&Manufacturer=Nvidia')
|
|
||||||
API_URL_STOCK = os.environ.get('API_URL_STOCK', 'https://api.store.nvidia.com/partner/v1/feinventory?locale=fr-fr&skus=')
|
|
||||||
REFRESH_TIME = int(os.environ.get('REFRESH_TIME', 30))
|
|
||||||
TEST_MODE = os.environ.get('TEST_MODE', 'False').lower() == 'true'
|
|
||||||
PRODUCT_URL = os.environ.get('PRODUCT_URL', 'https://marketplace.nvidia.com/fr-fr/consumer/graphics-cards/?locale=fr-fr&page=1&limit=12&manufacturer=NVIDIA')
|
|
||||||
DISCORD_ROLES = os.environ.get('DISCORD_ROLES')
|
DISCORD_ROLES = os.environ.get('DISCORD_ROLES')
|
||||||
|
COUNTRY = os.environ.get('COUNTRY') or 'US'
|
||||||
|
REFRESH_TIME = int(os.environ.get('REFRESH_TIME') or 30)
|
||||||
|
TEST_MODE = os.environ.get('TEST_MODE', 'False').lower() == 'true'
|
||||||
PRODUCT_NAMES = os.environ['PRODUCT_NAMES']
|
PRODUCT_NAMES = os.environ['PRODUCT_NAMES']
|
||||||
|
|
||||||
|
# Errors and warning
|
||||||
except KeyError as e:
|
except KeyError as e:
|
||||||
logging.error(f"Missing environment variable: {e}")
|
logging.error(f"Missing environment variable: {e}")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@ -29,9 +37,15 @@ except ValueError:
|
|||||||
logging.error("REFRESH_TIME must be a valid integer.")
|
logging.error("REFRESH_TIME must be a valid integer.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
if TEST_MODE:
|
||||||
|
logging.warning("🚧 Test mode is active. No real alerts will be sent.")
|
||||||
|
|
||||||
if not PRODUCT_NAMES:
|
if not PRODUCT_NAMES:
|
||||||
logging.error("❌ PRODUCT_NAMES is required but not defined.")
|
logging.error("❌ PRODUCT_NAMES is required but not defined.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
if not DISCORD_WEBHOOK_URL:
|
||||||
|
logging.error("❌ DISCORD_WEBHOOK_URL is required but not defined.")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
PRODUCT_NAMES = [name.strip() for name in PRODUCT_NAMES.split(',')]
|
PRODUCT_NAMES = [name.strip() for name in PRODUCT_NAMES.split(',')]
|
||||||
|
|
||||||
@ -52,11 +66,7 @@ else:
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
DISCORD_ROLE_MAP[name] = role
|
DISCORD_ROLE_MAP[name] = role
|
||||||
|
|
||||||
if not DISCORD_WEBHOOK_URL:
|
# Masked webhook in terminal
|
||||||
logging.error("❌ DISCORD_WEBHOOK_URL is required but not defined.")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
# Masked webhook for display
|
|
||||||
match = re.search(r'/(\d+)/(.*)', DISCORD_WEBHOOK_URL)
|
match = re.search(r'/(\d+)/(.*)', DISCORD_WEBHOOK_URL)
|
||||||
if match:
|
if match:
|
||||||
webhook_id = match.group(1)
|
webhook_id = match.group(1)
|
||||||
@ -67,10 +77,6 @@ if match:
|
|||||||
else:
|
else:
|
||||||
wh_masked_url = "[Invalid webhook URL]"
|
wh_masked_url = "[Invalid webhook URL]"
|
||||||
|
|
||||||
# Test mode
|
|
||||||
if TEST_MODE:
|
|
||||||
logging.warning("🚧 Test mode is active. No real alerts will be sent.")
|
|
||||||
|
|
||||||
# HTTP headers
|
# HTTP headers
|
||||||
HEADERS = {
|
HEADERS = {
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
|
||||||
@ -90,30 +96,57 @@ HEADERS = {
|
|||||||
"Sec-GPC": "1",
|
"Sec-GPC": "1",
|
||||||
}
|
}
|
||||||
|
|
||||||
# Localization loading
|
# Load country setting and localization config
|
||||||
language = os.environ.get("DISCORD_NOTIFICATION_LANGUAGE", "en").lower()
|
country_code = os.environ.get("COUNTRY", "US").upper()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
with open("localization.json", "r", encoding="utf-8") as f:
|
with open("localization.json", "r", encoding="utf-8") as f:
|
||||||
localization = json.load(f)
|
localization_config = json.load(f)
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
logging.error("❌ localization.json file not found.")
|
logging.error("❌ localization.json file not found.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Find country entry
|
||||||
|
country_entry = next((entry for entry in localization_config if entry["country_code"].upper() == country_code), None)
|
||||||
|
|
||||||
|
if not country_entry:
|
||||||
|
logging.warning(f"⚠️ Country '{country_code}' not found in localization.json. Defaulting to US.")
|
||||||
|
country_entry = next((entry for entry in localization_config if entry["country_code"].upper() == "US"), None)
|
||||||
|
if not country_entry:
|
||||||
|
logging.error("❌ US fallback not found in localization.json.")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Extract language code and currency
|
||||||
|
full_lang_code = country_entry["language_code"]
|
||||||
|
language = full_lang_code[:2].lower() # e.g., "en-US" -> "en"
|
||||||
|
currency = country_entry["currency"]
|
||||||
|
|
||||||
|
# Load language file
|
||||||
|
try:
|
||||||
|
with open("languages.json", "r", encoding="utf-8") as f:
|
||||||
|
loc_lang = json.load(f)
|
||||||
|
except FileNotFoundError:
|
||||||
|
logging.error("❌ languages.json file not found.")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
loc = loc_lang.get(language, loc_lang.get("en", {}))
|
||||||
|
logging.info(f"Notification language: {language} (from country {country_code})")
|
||||||
|
logging.info(f"Currency symbol: {currency}")
|
||||||
|
|
||||||
|
if not loc:
|
||||||
|
logging.warning(f"⚠️ Language '{language}' not found. Falling back to English.")
|
||||||
|
loc = loc_lang.get("en", {})
|
||||||
|
language = "en"
|
||||||
|
|
||||||
|
# Ensure all required keys are present
|
||||||
required_keys = [
|
required_keys = [
|
||||||
"in_stock_title", "out_of_stock_title", "sku_change_title",
|
"in_stock_title", "out_of_stock_title", "sku_change_title",
|
||||||
"buy_now", "price", "time", "footer",
|
"buy_now", "price", "time", "footer",
|
||||||
"sku_description", "imminent_drop"
|
"sku_description", "imminent_drop"
|
||||||
]
|
]
|
||||||
loc = localization.get(language, localization.get("en", {}))
|
|
||||||
logging.info(f"Notification language: {language}")
|
|
||||||
|
|
||||||
if not loc:
|
|
||||||
logging.warning(f"⚠️ Language '{language}' not found. Falling back to English.")
|
|
||||||
loc = localization.get("en", {})
|
|
||||||
language = "en"
|
|
||||||
|
|
||||||
missing_keys = [key for key in required_keys if key not in loc]
|
missing_keys = [key for key in required_keys if key not in loc]
|
||||||
fallback = localization.get("en", {})
|
fallback = loc_lang.get("en", {})
|
||||||
|
|
||||||
for key in missing_keys:
|
for key in missing_keys:
|
||||||
if key in fallback:
|
if key in fallback:
|
||||||
loc[key] = fallback[key]
|
loc[key] = fallback[key]
|
||||||
@ -121,6 +154,23 @@ for key in missing_keys:
|
|||||||
logging.error(f"❌ Missing required key '{key}' in both '{language}' and fallback 'en'.")
|
logging.error(f"❌ Missing required key '{key}' in both '{language}' and fallback 'en'.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Localized API - Env var can be overrided for development purposes
|
||||||
|
locale = full_lang_code.lower()
|
||||||
|
API_URL_SKU = os.getenv(
|
||||||
|
"API_URL_SKU",
|
||||||
|
f"https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale={locale}&Manufacturer=Nvidia"
|
||||||
|
)
|
||||||
|
|
||||||
|
API_URL_STOCK = os.getenv(
|
||||||
|
"API_URL_STOCK",
|
||||||
|
f"https://api.store.nvidia.com/partner/v1/feinventory?locale={locale}&skus="
|
||||||
|
)
|
||||||
|
|
||||||
|
PRODUCT_URL = os.getenv(
|
||||||
|
"PRODUCT_URL",
|
||||||
|
f"https://marketplace.nvidia.com/{locale}/consumer/graphics-cards/?locale={locale}&page=1&limit=12&manufacturer=NVIDIA"
|
||||||
|
)
|
||||||
|
|
||||||
# Public constants
|
# Public constants
|
||||||
in_stock_title = loc["in_stock_title"]
|
in_stock_title = loc["in_stock_title"]
|
||||||
out_of_stock_title = loc["out_of_stock_title"]
|
out_of_stock_title = loc["out_of_stock_title"]
|
||||||
|
@ -1,21 +1,24 @@
|
|||||||
import requests
|
import requests
|
||||||
import logging
|
import logging
|
||||||
from env_config import API_URL_SKU, API_URL_STOCK, HEADERS, PRODUCT_NAMES, PRODUCT_URL
|
from env_config import HEADERS, PRODUCT_NAMES, API_URL_SKU, API_URL_STOCK, PRODUCT_URL
|
||||||
from notifier import send_discord_notification, send_out_of_stock_notification, send_sku_change_notification
|
from notifier import send_discord_notification, send_out_of_stock_notification, send_sku_change_notification
|
||||||
|
|
||||||
from requests.adapters import HTTPAdapter, Retry
|
from requests.adapters import HTTPAdapter, Retry
|
||||||
|
|
||||||
|
# HTTP session
|
||||||
session = requests.Session()
|
session = requests.Session()
|
||||||
retries = Retry(total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504])
|
retries = Retry(total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504])
|
||||||
session.mount('https://', HTTPAdapter(max_retries=retries))
|
session.mount('https://', HTTPAdapter(max_retries=retries))
|
||||||
|
|
||||||
|
# Keeping memory of last run
|
||||||
last_sku_dict = {}
|
last_sku_dict = {}
|
||||||
global_stock_status_dict = {}
|
global_stock_status_dict = {}
|
||||||
first_run_dict = {name: True for name in PRODUCT_NAMES}
|
first_run_dict = {name: True for name in PRODUCT_NAMES}
|
||||||
|
|
||||||
|
# Stock check function
|
||||||
def check_rtx_50_founders():
|
def check_rtx_50_founders():
|
||||||
global last_sku_dict, global_stock_status_dict, first_run_dict
|
global last_sku_dict, global_stock_status_dict, first_run_dict
|
||||||
|
|
||||||
|
# Fetching nvidia API data
|
||||||
try:
|
try:
|
||||||
response = session.get(API_URL_SKU, headers=HEADERS, timeout=10)
|
response = session.get(API_URL_SKU, headers=HEADERS, timeout=10)
|
||||||
logging.info(f"SKU API response: {response.status_code}")
|
logging.info(f"SKU API response: {response.status_code}")
|
||||||
@ -25,7 +28,7 @@ def check_rtx_50_founders():
|
|||||||
logging.error(f"SKU API error: {e}")
|
logging.error(f"SKU API error: {e}")
|
||||||
return
|
return
|
||||||
|
|
||||||
# All available products
|
# Checking productSKU and productUPC for all GPU set in PRODUCT_NAME
|
||||||
all_products = data['searchedProducts']['productDetails']
|
all_products = data['searchedProducts']['productDetails']
|
||||||
|
|
||||||
for product_name in PRODUCT_NAMES:
|
for product_name in PRODUCT_NAMES:
|
||||||
@ -44,7 +47,7 @@ def check_rtx_50_founders():
|
|||||||
if not isinstance(product_upc, list):
|
if not isinstance(product_upc, list):
|
||||||
product_upc = [product_upc]
|
product_upc = [product_upc]
|
||||||
|
|
||||||
# Check SKU change
|
# Detect SKU changes
|
||||||
old_sku = last_sku_dict.get(product_name)
|
old_sku = last_sku_dict.get(product_name)
|
||||||
if old_sku and old_sku != product_sku and not first_run_dict[product_name]:
|
if old_sku and old_sku != product_sku and not first_run_dict[product_name]:
|
||||||
logging.warning(f"⚠️ SKU changed for {product_name}: {old_sku} → {product_sku}")
|
logging.warning(f"⚠️ SKU changed for {product_name}: {old_sku} → {product_sku}")
|
||||||
@ -53,7 +56,7 @@ def check_rtx_50_founders():
|
|||||||
last_sku_dict[product_name] = product_sku
|
last_sku_dict[product_name] = product_sku
|
||||||
first_run_dict[product_name] = False
|
first_run_dict[product_name] = False
|
||||||
|
|
||||||
# Stock check
|
# Check product availability in API_URL_STOCK for each SKU
|
||||||
api_stock_url = API_URL_STOCK + product_sku
|
api_stock_url = API_URL_STOCK + product_sku
|
||||||
logging.info(f"[{product_name}] Checking stock: {api_stock_url}")
|
logging.info(f"[{product_name}] Checking stock: {api_stock_url}")
|
||||||
|
|
||||||
@ -66,6 +69,7 @@ def check_rtx_50_founders():
|
|||||||
logging.error(f"Stock API error: {e}")
|
logging.error(f"Stock API error: {e}")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# Retrieve availibilty and price for each SKU
|
||||||
products = stock_data.get("listMap", [])
|
products = stock_data.get("listMap", [])
|
||||||
products_price = "Price not available"
|
products_price = "Price not available"
|
||||||
if isinstance(products, list) and len(products) > 0:
|
if isinstance(products, list) and len(products) > 0:
|
||||||
@ -84,6 +88,7 @@ def check_rtx_50_founders():
|
|||||||
if is_active and any(upc.upper() in gpu_name for upc in product_upc):
|
if is_active and any(upc.upper() in gpu_name for upc in product_upc):
|
||||||
found_in_stock.add(gpu_name)
|
found_in_stock.add(gpu_name)
|
||||||
|
|
||||||
|
# Comparing previous state and notify
|
||||||
for upc in product_upc:
|
for upc in product_upc:
|
||||||
upc_upper = upc.upper()
|
upc_upper = upc.upper()
|
||||||
currently_in_stock = upc_upper in found_in_stock
|
currently_in_stock = upc_upper in found_in_stock
|
||||||
@ -101,4 +106,3 @@ def check_rtx_50_founders():
|
|||||||
logging.info(f"[{product_name}] {upc} still in stock.")
|
logging.info(f"[{product_name}] {upc} still in stock.")
|
||||||
else:
|
else:
|
||||||
logging.info(f"[{product_name}] {upc} still out of stock.")
|
logging.info(f"[{product_name}] {upc} still out of stock.")
|
||||||
|
|
266
app/languages.json
Normal file
266
app/languages.json
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
{
|
||||||
|
"en": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} IN STOCK!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} is out of stock",
|
||||||
|
"sku_change_title": "🔄 SKU change detected for {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Buy now]({product_link})**",
|
||||||
|
"price": "Price",
|
||||||
|
"time": "Time",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Old SKU** : `{old_sku}`\n**New SKU** : `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possible imminent drop!"
|
||||||
|
},
|
||||||
|
"bg": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} ИМА НАЛИЧНОСТ!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} е изчерпан",
|
||||||
|
"sku_change_title": "🔄 Засечена промяна на SKU за {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Купи сега]({product_link})**",
|
||||||
|
"price": "Цена",
|
||||||
|
"time": "Час",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Стар SKU**: `{old_sku}`\n**Нов SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Възможен наближаващ спад!"
|
||||||
|
},
|
||||||
|
"cs": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} SKLADEM!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} je vyprodán",
|
||||||
|
"sku_change_title": "🔄 Změna SKU nalezena pro {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Koupit nyní]({product_link})**",
|
||||||
|
"price": "Cena",
|
||||||
|
"time": "Čas",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Starý SKU**: `{old_sku}`\n**Nový SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možný blížící se pokles!"
|
||||||
|
},
|
||||||
|
"da": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} PÅ LAGER!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} er udsolgt",
|
||||||
|
"sku_change_title": "🔄 SKU-ændring fundet for {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Køb nu]({product_link})**",
|
||||||
|
"price": "Pris",
|
||||||
|
"time": "Tid",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Gammelt SKU**: `{old_sku}`\n**Nyt SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Muligt snarligt drop!"
|
||||||
|
},
|
||||||
|
"de": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} AUF LAGER!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} ist ausverkauft",
|
||||||
|
"sku_change_title": "🔄 SKU-Änderung erkannt für {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Jetzt kaufen]({product_link})**",
|
||||||
|
"price": "Preis",
|
||||||
|
"time": "Zeit",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Alte SKU**: `{old_sku}`\n**Neue SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Möglicher bevorstehender Drop!"
|
||||||
|
},
|
||||||
|
"el": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} ΔΙΑΘΕΣΙΜΟ!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} εξαντλήθηκε",
|
||||||
|
"sku_change_title": "🔄 Ανίχνευση αλλαγής SKU για {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Αγόρασε τώρα]({product_link})**",
|
||||||
|
"price": "Τιμή",
|
||||||
|
"time": "Ώρα",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Παλαιό SKU**: `{old_sku}`\n**Νέο SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Πιθανή επικείμενη πτώση!"
|
||||||
|
},
|
||||||
|
"es": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} ¡EN STOCK!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} está agotado",
|
||||||
|
"sku_change_title": "🔄 Cambio de SKU detectado para {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Comprar ahora]({product_link})**",
|
||||||
|
"price": "Precio",
|
||||||
|
"time": "Hora",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**SKU antiguo**: `{old_sku}`\n**SKU nuevo**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ ¡Posible drop inminente!"
|
||||||
|
},
|
||||||
|
"et": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} LAOS!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} on välja müüdud",
|
||||||
|
"sku_change_title": "🔄 Tuvastatud SKU muudatus {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Osta kohe]({product_link})**",
|
||||||
|
"price": "Hind",
|
||||||
|
"time": "Aeg",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Vana SKU**: `{old_sku}`\n**Uus SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Võimalik varsti tulemas drop!"
|
||||||
|
},
|
||||||
|
"fi": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} VARASTOSSA!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} on loppunut",
|
||||||
|
"sku_change_title": "🔄 SKU-muutos havaittu {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Osta nyt]({product_link})**",
|
||||||
|
"price": "Hinta",
|
||||||
|
"time": "Aika",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Vanha SKU**: `{old_sku}`\n**Uusi SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mahdollinen lähestyvä drop!"
|
||||||
|
},
|
||||||
|
"fr": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} EN STOCK !",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} est en rupture",
|
||||||
|
"sku_change_title": "🔄 Changement de SKU détecté pour {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Acheter maintenant]({product_link})**",
|
||||||
|
"price": "Prix",
|
||||||
|
"time": "Heure",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Ancien SKU** : `{old_sku}`\n**Nouveau SKU** : `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Éventuel drop imminent!"
|
||||||
|
},
|
||||||
|
"hr": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} NA ZALIHI!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} je rasprodan",
|
||||||
|
"sku_change_title": "🔄 Promjena SKU za {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Kupi sada]({product_link})**",
|
||||||
|
"price": "Cijena",
|
||||||
|
"time": "Vrijeme",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Stari SKU**: `{old_sku}`\n**Novi SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mogući nadolazeći drop!"
|
||||||
|
},
|
||||||
|
"hu": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} RAKTÁRON!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} elfogyott",
|
||||||
|
"sku_change_title": "🔄 SKU változás észlelve: {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Vásárlás most]({product_link})**",
|
||||||
|
"price": "Ár",
|
||||||
|
"time": "Idő",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Régi SKU**: `{old_sku}`\n**Új SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Lehetséges közelgő drop!"
|
||||||
|
},
|
||||||
|
"ga": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} I STOC!",
|
||||||
|
"out_of_stock_title": "❌ níl {gpu_name} ar fáil",
|
||||||
|
"sku_change_title": "🔄 SKU athraithe aimsithe do {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Ceannaigh anois]({product_link})**",
|
||||||
|
"price": "Praghas",
|
||||||
|
"time": "Am",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Sean SKU**: `{old_sku}`\n**SKU Nua**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ I bhfad is gaire drop féideartha!"
|
||||||
|
},
|
||||||
|
"it": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} DISPONIBILE!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} esaurito",
|
||||||
|
"sku_change_title": "🔄 Modifica SKU rilevata per {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Acquista ora]({product_link})**",
|
||||||
|
"price": "Prezzo",
|
||||||
|
"time": "Ora",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Vecchio SKU**: `{old_sku}`\n**Nuovo SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possibile drop imminente!"
|
||||||
|
},
|
||||||
|
"lv": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} KRĀJUMĀ!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} nav pieejams",
|
||||||
|
"sku_change_title": "🔄 SKU izmaiņas: {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Pirkt tagad]({product_link})**",
|
||||||
|
"price": "Cena",
|
||||||
|
"time": "Laiks",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Vecais SKU**: `{old_sku}`\n**Jaunais SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Iespējams gaidāms drop!"
|
||||||
|
},
|
||||||
|
"lt": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} SANDĖLYJE!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} išparduotas",
|
||||||
|
"sku_change_title": "🔄 SKU pakeitimas aptiktas: {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Pirkti dabar]({product_link})**",
|
||||||
|
"price": "Kaina",
|
||||||
|
"time": "Laikas",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Senas SKU**: `{old_sku}`\n**Naujas SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Rugsėjo drop'as gali artėti!"
|
||||||
|
},
|
||||||
|
"mt": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} F'ĠESTA!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} mhux disponibbli",
|
||||||
|
"sku_change_title": "🔄 Bidla SKU skoperta għal {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Ixtri issa]({product_link})**",
|
||||||
|
"price": "Prezz",
|
||||||
|
"time": "Ħin",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**SKU Antik**: `{old_sku}`\n**SKU Ġdid**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possibbli drop imminenti!"
|
||||||
|
},
|
||||||
|
"nl": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} OP VOORRAAD!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} is uitverkocht",
|
||||||
|
"sku_change_title": "🔄 SKU-wijziging gedetecteerd voor {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Nu kopen]({product_link})**",
|
||||||
|
"price": "Prijs",
|
||||||
|
"time": "Tijd",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Oude SKU**: `{old_sku}`\n**Nieuwe SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mogelijke aanstaande drop!"
|
||||||
|
},
|
||||||
|
"pl": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} DOSTĘPNE!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} jest niedostępny",
|
||||||
|
"sku_change_title": "🔄 Wykryto zmianę SKU dla {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Kup teraz]({product_link})**",
|
||||||
|
"price": "Cena",
|
||||||
|
"time": "Czas",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Stare SKU**: `{old_sku}`\n**Nowe SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Możliwy nadchodzący drop!"
|
||||||
|
},
|
||||||
|
"pt": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} EM STOCK!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} esgotado",
|
||||||
|
"sku_change_title": "🔄 Alteração de SKU detectada para {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Comprar agora]({product_link})**",
|
||||||
|
"price": "Preço",
|
||||||
|
"time": "Hora",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**SKU antigo**: `{old_sku}`\n**SKU novo**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possível drop iminente!"
|
||||||
|
},
|
||||||
|
"ro": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} ÎN STOC!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} este epuizat",
|
||||||
|
"sku_change_title": "🔄 Schimbare SKU detectată pentru {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Cumpără acum]({product_link})**",
|
||||||
|
"price": "Preț",
|
||||||
|
"time": "Timp",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**SKU vechi**: `{old_sku}`\n**SKU nou**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Posibil drop iminent!"
|
||||||
|
},
|
||||||
|
"sk": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} NA SKLADE!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} je vypredaný",
|
||||||
|
"sku_change_title": "🔄 Zmena SKU zistená pre {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Kúp teraz]({product_link})**",
|
||||||
|
"price": "Cena",
|
||||||
|
"time": "Čas",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Starý SKU**: `{old_sku}`\n**Nový SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možný nadchádzajúci drop!"
|
||||||
|
},
|
||||||
|
"sl": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} NA ZALOGI!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} je razprodan",
|
||||||
|
"sku_change_title": "🔄 Sprememba SKU zaznana za {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Kupi zdaj]({product_link})**",
|
||||||
|
"price": "Cena",
|
||||||
|
"time": "Čas",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Stari SKU**: `{old_sku}`\n**Novi SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možen prihajajoči drop!"
|
||||||
|
},
|
||||||
|
"sv": {
|
||||||
|
"in_stock_title": "🚀 {gpu_name} I LAGER!",
|
||||||
|
"out_of_stock_title": "❌ {gpu_name} är slut",
|
||||||
|
"sku_change_title": "🔄 SKU-ändring upptäckt för {gpu_name}",
|
||||||
|
"buy_now": "**:point_right: [Köp nu]({product_link})**",
|
||||||
|
"price": "Pris",
|
||||||
|
"time": "Tid",
|
||||||
|
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
||||||
|
"sku_description": "**Gammalt SKU**: `{old_sku}`\n**Nytt SKU**: `{new_sku}`",
|
||||||
|
"imminent_drop": "{DISCORD_ROLE} ⚠️ Möjlig förestående drop!"
|
||||||
|
}
|
||||||
|
}
|
@ -1,266 +1,104 @@
|
|||||||
|
[
|
||||||
{
|
{
|
||||||
"en": {
|
"country": "United Kingdom",
|
||||||
"in_stock_title": "🚀 {gpu_name} IN STOCK!",
|
"country_code": "GB",
|
||||||
"out_of_stock_title": "❌ {gpu_name} is out of stock",
|
"language_code": "en-GB",
|
||||||
"sku_change_title": "🔄 SKU change detected for {gpu_name}",
|
"currency": "£"
|
||||||
"buy_now": "**:point_right: [Buy now]({product_link})**",
|
|
||||||
"price": "Price",
|
|
||||||
"time": "Time",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Old SKU** : `{old_sku}`\n**New SKU** : `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possible imminent drop!"
|
|
||||||
},
|
},
|
||||||
"bg": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} ИМА НАЛИЧНОСТ!",
|
"country": "United States",
|
||||||
"out_of_stock_title": "❌ {gpu_name} е изчерпан",
|
"country_code": "US",
|
||||||
"sku_change_title": "🔄 Засечена промяна на SKU за {gpu_name}",
|
"language_code": "en-US",
|
||||||
"buy_now": "**:point_right: [Купи сега]({product_link})**",
|
"currency": "$"
|
||||||
"price": "Цена",
|
|
||||||
"time": "Час",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Стар SKU**: `{old_sku}`\n**Нов SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Възможен наближаващ спад!"
|
|
||||||
},
|
},
|
||||||
"cs": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} SKLADEM!",
|
"country": "Canada",
|
||||||
"out_of_stock_title": "❌ {gpu_name} je vyprodán",
|
"country_code": "CA",
|
||||||
"sku_change_title": "🔄 Změna SKU nalezena pro {gpu_name}",
|
"language_code": "en-CA",
|
||||||
"buy_now": "**:point_right: [Koupit nyní]({product_link})**",
|
"currency": "$"
|
||||||
"price": "Cena",
|
|
||||||
"time": "Čas",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Starý SKU**: `{old_sku}`\n**Nový SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možný blížící se pokles!"
|
|
||||||
},
|
},
|
||||||
"da": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} PÅ LAGER!",
|
"country": "Belgium",
|
||||||
"out_of_stock_title": "❌ {gpu_name} er udsolgt",
|
"country_code": "BE",
|
||||||
"sku_change_title": "🔄 SKU-ændring fundet for {gpu_name}",
|
"language_code": "nl-BE",
|
||||||
"buy_now": "**:point_right: [Køb nu]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Pris",
|
|
||||||
"time": "Tid",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Gammelt SKU**: `{old_sku}`\n**Nyt SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Muligt snarligt drop!"
|
|
||||||
},
|
},
|
||||||
"de": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} AUF LAGER!",
|
"country": "Netherlands",
|
||||||
"out_of_stock_title": "❌ {gpu_name} ist ausverkauft",
|
"country_code": "NL",
|
||||||
"sku_change_title": "🔄 SKU-Änderung erkannt für {gpu_name}",
|
"language_code": "nl-NL",
|
||||||
"buy_now": "**:point_right: [Jetzt kaufen]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Preis",
|
|
||||||
"time": "Zeit",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Alte SKU**: `{old_sku}`\n**Neue SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Möglicher bevorstehender Drop!"
|
|
||||||
},
|
},
|
||||||
"el": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} ΔΙΑΘΕΣΙΜΟ!",
|
"country": "Denmark",
|
||||||
"out_of_stock_title": "❌ {gpu_name} εξαντλήθηκε",
|
"country_code": "DK",
|
||||||
"sku_change_title": "🔄 Ανίχνευση αλλαγής SKU για {gpu_name}",
|
"language_code": "da-DK",
|
||||||
"buy_now": "**:point_right: [Αγόρασε τώρα]({product_link})**",
|
"currency": "kr"
|
||||||
"price": "Τιμή",
|
|
||||||
"time": "Ώρα",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Παλαιό SKU**: `{old_sku}`\n**Νέο SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Πιθανή επικείμενη πτώση!"
|
|
||||||
},
|
},
|
||||||
"es": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} ¡EN STOCK!",
|
"country": "Germany",
|
||||||
"out_of_stock_title": "❌ {gpu_name} está agotado",
|
"country_code": "DE",
|
||||||
"sku_change_title": "🔄 Cambio de SKU detectado para {gpu_name}",
|
"language_code": "de-DE",
|
||||||
"buy_now": "**:point_right: [Comprar ahora]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Precio",
|
|
||||||
"time": "Hora",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**SKU antiguo**: `{old_sku}`\n**SKU nuevo**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ ¡Posible drop inminente!"
|
|
||||||
},
|
},
|
||||||
"et": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} LAOS!",
|
"country": "Spain",
|
||||||
"out_of_stock_title": "❌ {gpu_name} on välja müüdud",
|
"country_code": "ES",
|
||||||
"sku_change_title": "🔄 Tuvastatud SKU muudatus {gpu_name}",
|
"language_code": "es-ES",
|
||||||
"buy_now": "**:point_right: [Osta kohe]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Hind",
|
|
||||||
"time": "Aeg",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Vana SKU**: `{old_sku}`\n**Uus SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Võimalik varsti tulemas drop!"
|
|
||||||
},
|
},
|
||||||
"fi": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} VARASTOSSA!",
|
"country": "France",
|
||||||
"out_of_stock_title": "❌ {gpu_name} on loppunut",
|
"country_code": "FR",
|
||||||
"sku_change_title": "🔄 SKU-muutos havaittu {gpu_name}",
|
"language_code": "fr-FR",
|
||||||
"buy_now": "**:point_right: [Osta nyt]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Hinta",
|
|
||||||
"time": "Aika",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Vanha SKU**: `{old_sku}`\n**Uusi SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mahdollinen lähestyvä drop!"
|
|
||||||
},
|
},
|
||||||
"fr": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} EN STOCK !",
|
"country": "Italy",
|
||||||
"out_of_stock_title": "❌ {gpu_name} est en rupture",
|
"country_code": "IT",
|
||||||
"sku_change_title": "🔄 Changement de SKU détecté pour {gpu_name}",
|
"language_code": "it-IT",
|
||||||
"buy_now": "**:point_right: [Acheter maintenant]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Prix",
|
|
||||||
"time": "Heure",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Ancien SKU** : `{old_sku}`\n**Nouveau SKU** : `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Éventuel drop imminent!"
|
|
||||||
},
|
},
|
||||||
"hr": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} NA ZALIHI!",
|
"country": "Norway",
|
||||||
"out_of_stock_title": "❌ {gpu_name} je rasprodan",
|
"country_code": "NO",
|
||||||
"sku_change_title": "🔄 Promjena SKU za {gpu_name}",
|
"language_code": "nb-NO",
|
||||||
"buy_now": "**:point_right: [Kupi sada]({product_link})**",
|
"currency": "kr"
|
||||||
"price": "Cijena",
|
|
||||||
"time": "Vrijeme",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Stari SKU**: `{old_sku}`\n**Novi SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mogući nadolazeći drop!"
|
|
||||||
},
|
},
|
||||||
"hu": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} RAKTÁRON!",
|
"country": "Austria",
|
||||||
"out_of_stock_title": "❌ {gpu_name} elfogyott",
|
"country_code": "AT",
|
||||||
"sku_change_title": "🔄 SKU változás észlelve: {gpu_name}",
|
"language_code": "de-AT",
|
||||||
"buy_now": "**:point_right: [Vásárlás most]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Ár",
|
|
||||||
"time": "Idő",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Régi SKU**: `{old_sku}`\n**Új SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Lehetséges közelgő drop!"
|
|
||||||
},
|
},
|
||||||
"ga": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} I STOC!",
|
"country": "Poland",
|
||||||
"out_of_stock_title": "❌ níl {gpu_name} ar fáil",
|
"country_code": "PL",
|
||||||
"sku_change_title": "🔄 SKU athraithe aimsithe do {gpu_name}",
|
"language_code": "pl-PL",
|
||||||
"buy_now": "**:point_right: [Ceannaigh anois]({product_link})**",
|
"currency": "zł"
|
||||||
"price": "Praghas",
|
|
||||||
"time": "Am",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Sean SKU**: `{old_sku}`\n**SKU Nua**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ I bhfad is gaire drop féideartha!"
|
|
||||||
},
|
},
|
||||||
"it": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} DISPONIBILE!",
|
"country": "Finland",
|
||||||
"out_of_stock_title": "❌ {gpu_name} esaurito",
|
"country_code": "FI",
|
||||||
"sku_change_title": "🔄 Modifica SKU rilevata per {gpu_name}",
|
"language_code": "fi-FI",
|
||||||
"buy_now": "**:point_right: [Acquista ora]({product_link})**",
|
"currency": "€"
|
||||||
"price": "Prezzo",
|
|
||||||
"time": "Ora",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Vecchio SKU**: `{old_sku}`\n**Nuovo SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possibile drop imminente!"
|
|
||||||
},
|
},
|
||||||
"lv": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} KRĀJUMĀ!",
|
"country": "Sweden",
|
||||||
"out_of_stock_title": "❌ {gpu_name} nav pieejams",
|
"country_code": "SE",
|
||||||
"sku_change_title": "🔄 SKU izmaiņas: {gpu_name}",
|
"language_code": "sv-SE",
|
||||||
"buy_now": "**:point_right: [Pirkt tagad]({product_link})**",
|
"currency": "kr"
|
||||||
"price": "Cena",
|
|
||||||
"time": "Laiks",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Vecais SKU**: `{old_sku}`\n**Jaunais SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Iespējams gaidāms drop!"
|
|
||||||
},
|
},
|
||||||
"lt": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} SANDĖLYJE!",
|
"country": "South Korea",
|
||||||
"out_of_stock_title": "❌ {gpu_name} išparduotas",
|
"country_code": "KR",
|
||||||
"sku_change_title": "🔄 SKU pakeitimas aptiktas: {gpu_name}",
|
"language_code": "ko-KR",
|
||||||
"buy_now": "**:point_right: [Pirkti dabar]({product_link})**",
|
"currency": "₩"
|
||||||
"price": "Kaina",
|
|
||||||
"time": "Laikas",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Senas SKU**: `{old_sku}`\n**Naujas SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Rugsėjo drop'as gali artėti!"
|
|
||||||
},
|
},
|
||||||
"mt": {
|
{
|
||||||
"in_stock_title": "🚀 {gpu_name} F'ĠESTA!",
|
"country": "Japan",
|
||||||
"out_of_stock_title": "❌ {gpu_name} mhux disponibbli",
|
"country_code": "JP",
|
||||||
"sku_change_title": "🔄 Bidla SKU skoperta għal {gpu_name}",
|
"language_code": "ja-JP",
|
||||||
"buy_now": "**:point_right: [Ixtri issa]({product_link})**",
|
"currency": "¥"
|
||||||
"price": "Prezz",
|
|
||||||
"time": "Ħin",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**SKU Antik**: `{old_sku}`\n**SKU Ġdid**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possibbli drop imminenti!"
|
|
||||||
},
|
|
||||||
"nl": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} OP VOORRAAD!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} is uitverkocht",
|
|
||||||
"sku_change_title": "🔄 SKU-wijziging gedetecteerd voor {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Nu kopen]({product_link})**",
|
|
||||||
"price": "Prijs",
|
|
||||||
"time": "Tijd",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Oude SKU**: `{old_sku}`\n**Nieuwe SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Mogelijke aanstaande drop!"
|
|
||||||
},
|
|
||||||
"pl": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} DOSTĘPNE!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} jest niedostępny",
|
|
||||||
"sku_change_title": "🔄 Wykryto zmianę SKU dla {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Kup teraz]({product_link})**",
|
|
||||||
"price": "Cena",
|
|
||||||
"time": "Czas",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Stare SKU**: `{old_sku}`\n**Nowe SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Możliwy nadchodzący drop!"
|
|
||||||
},
|
|
||||||
"pt": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} EM STOCK!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} esgotado",
|
|
||||||
"sku_change_title": "🔄 Alteração de SKU detectada para {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Comprar agora]({product_link})**",
|
|
||||||
"price": "Preço",
|
|
||||||
"time": "Hora",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**SKU antigo**: `{old_sku}`\n**SKU novo**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Possível drop iminente!"
|
|
||||||
},
|
|
||||||
"ro": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} ÎN STOC!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} este epuizat",
|
|
||||||
"sku_change_title": "🔄 Schimbare SKU detectată pentru {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Cumpără acum]({product_link})**",
|
|
||||||
"price": "Preț",
|
|
||||||
"time": "Timp",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**SKU vechi**: `{old_sku}`\n**SKU nou**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Posibil drop iminent!"
|
|
||||||
},
|
|
||||||
"sk": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} NA SKLADE!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} je vypredaný",
|
|
||||||
"sku_change_title": "🔄 Zmena SKU zistená pre {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Kúp teraz]({product_link})**",
|
|
||||||
"price": "Cena",
|
|
||||||
"time": "Čas",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Starý SKU**: `{old_sku}`\n**Nový SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možný nadchádzajúci drop!"
|
|
||||||
},
|
|
||||||
"sl": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} NA ZALOGI!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} je razprodan",
|
|
||||||
"sku_change_title": "🔄 Sprememba SKU zaznana za {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Kupi zdaj]({product_link})**",
|
|
||||||
"price": "Cena",
|
|
||||||
"time": "Čas",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Stari SKU**: `{old_sku}`\n**Novi SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Možen prihajajoči drop!"
|
|
||||||
},
|
|
||||||
"sv": {
|
|
||||||
"in_stock_title": "🚀 {gpu_name} I LAGER!",
|
|
||||||
"out_of_stock_title": "❌ {gpu_name} är slut",
|
|
||||||
"sku_change_title": "🔄 SKU-ändring upptäckt för {gpu_name}",
|
|
||||||
"buy_now": "**:point_right: [Köp nu]({product_link})**",
|
|
||||||
"price": "Pris",
|
|
||||||
"time": "Tid",
|
|
||||||
"footer": "NviBot • {DISCORD_SERVER_NAME}",
|
|
||||||
"sku_description": "**Gammalt SKU**: `{old_sku}`\n**Nytt SKU**: `{new_sku}`",
|
|
||||||
"imminent_drop": "{DISCORD_ROLE} ⚠️ Möjlig förestående drop!"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
@ -2,7 +2,7 @@ import time
|
|||||||
import logging
|
import logging
|
||||||
import requests
|
import requests
|
||||||
from env_config import (
|
from env_config import (
|
||||||
DISCORD_WEBHOOK_URL, DISCORD_SERVER_NAME, DISCORD_ROLE_MAP, TEST_MODE,
|
DISCORD_WEBHOOK_URL, DISCORD_SERVER_NAME, DISCORD_ROLE_MAP, TEST_MODE, currency,
|
||||||
in_stock_title, out_of_stock_title, sku_change_title,
|
in_stock_title, out_of_stock_title, sku_change_title,
|
||||||
buy_now, price_label, time_label, footer, sku_description, imminent_drop
|
buy_now, price_label, time_label, footer, sku_description, imminent_drop
|
||||||
)
|
)
|
||||||
@ -23,7 +23,7 @@ def send_discord_notification(gpu_name, product_link, products_price):
|
|||||||
"thumbnail": {"url": THUMBNAIL},
|
"thumbnail": {"url": THUMBNAIL},
|
||||||
"author": {"name": "Nvidia Founder Editions"},
|
"author": {"name": "Nvidia Founder Editions"},
|
||||||
"fields": [
|
"fields": [
|
||||||
{"name": price_label, "value": f"`{products_price}€`", "inline": True},
|
{"name": price_label, "value": f"`{currency}{products_price}`", "inline": True},
|
||||||
{"name": time_label, "value": f"<t:{timestamp}:d> <t:{timestamp}:T>", "inline": True}
|
{"name": time_label, "value": f"<t:{timestamp}:d> <t:{timestamp}:T>", "inline": True}
|
||||||
],
|
],
|
||||||
"description": buy_now.format(product_link=product_link),
|
"description": buy_now.format(product_link=product_link),
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
PRODUCT_NAMES= # Exact GPU name (e.g. "RTX 5080, RTX 5090")
|
PRODUCT_NAMES= # Exact GPU name (e.g. "RTX 5080, RTX 5090")
|
||||||
DISCORD_WEBHOOK_URL= # Your Discord webhook URL
|
DISCORD_WEBHOOK_URL= # Your Discord webhook URL
|
||||||
API_URL_SKU= # API listing the product for your country
|
COUNTRY= # Set your country (e.g. 'US')
|
||||||
API_URL_STOCK= # API providing stock data for your country
|
|
||||||
PRODUCT_URL= # GPU purchase URL for your country
|
|
@ -7,9 +7,9 @@ services:
|
|||||||
- .env
|
- .env
|
||||||
environment:
|
environment:
|
||||||
# Minimal environment variables
|
# Minimal environment variables
|
||||||
- PRODUCT_NAMES=${PRODUCT_NAMES} # Exact GPU name (e.g. "RTX 5080, RTX 5090")
|
environment:
|
||||||
- DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL} # Your Discord webhook URL
|
# Minimal environment variables
|
||||||
- API_URL_SKU=${API_URL_SKU} # API listing the product for your country
|
- PRODUCT_NAMES=${PRODUCT_NAMES}
|
||||||
- API_URL_STOCK=${API_URL_STOCK} # API providing stock data for your country
|
- DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL}
|
||||||
- PRODUCT_URL=${PRODUCT_URL} # GPU purchase URL for your country
|
- COUNTRY=${COUNTRY}
|
||||||
- PYTHONUNBUFFERED=1 # Enables real-time log output
|
- PYTHONUNBUFFERED=1
|
Reference in New Issue
Block a user