Fixed API url
This commit is contained in:
		@@ -67,7 +67,7 @@ Vous trouverez-ci dessous les instructions pour configurer le conteneur avec not
 | 
				
			|||||||
version: "3.8"
 | 
					version: "3.8"
 | 
				
			||||||
services:
 | 
					services:
 | 
				
			||||||
  nvidia-stock-bot:
 | 
					  nvidia-stock-bot:
 | 
				
			||||||
    image: git.djeex.fr/djeex/nvidia-stock-bot:5
 | 
					    image: git.djeex.fr/djeex/nvidia-stock-bot:6
 | 
				
			||||||
    container_name: nvidia-stock-bot
 | 
					    container_name: nvidia-stock-bot
 | 
				
			||||||
    restart: always # Le conteneur redémarrera automatiquement en cas d'échec
 | 
					    restart: always # Le conteneur redémarrera automatiquement en cas d'échec
 | 
				
			||||||
    environment:
 | 
					    environment:
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,7 +27,7 @@ print(f"url du webhook Discord: {DISCORD_WEBHOOK_URL}")
 | 
				
			|||||||
print(f"Temps d'actualisation (en secondes) : {REFRESH_TIME}")
 | 
					print(f"Temps d'actualisation (en secondes) : {REFRESH_TIME}")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# L’URL de l’API (exemple)
 | 
					# L’URL de l’API (exemple)
 | 
				
			||||||
API_URL = "https://api.nvidia.partners/edge/product/search?page=1&limit=100&locale=fr-fr&manufacturer=nvidia"
 | 
					API_URL = "https://api.nvidia.partners/edge/product/search?page=1&limit=9&locale=fr-fr&category=GPU&gpu=RTX%205080,RTX%205090"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# GPUs à surveiller
 | 
					# GPUs à surveiller
 | 
				
			||||||
GPU_TARGETS = ["RTX 5070 Ti", "RTX 5070", "RTX 5080", "RTX 5090"]
 | 
					GPU_TARGETS = ["RTX 5070 Ti", "RTX 5070", "RTX 5080", "RTX 5090"]
 | 
				
			||||||
@@ -75,10 +75,6 @@ def send_discord_notification(message: str):
 | 
				
			|||||||
def check_rtx_50_founders():
 | 
					def check_rtx_50_founders():
 | 
				
			||||||
    """Vérifie l'état de stock des GPU Founders Edition et notifie Discord si un GPU repasse en stock."""
 | 
					    """Vérifie l'état de stock des GPU Founders Edition et notifie Discord si un GPU repasse en stock."""
 | 
				
			||||||
    try:
 | 
					    try:
 | 
				
			||||||
        session.get("https://api.nvidia.partners/edge/product/search?page=1&limit=1",
 | 
					 | 
				
			||||||
                    headers=HEADERS,
 | 
					 | 
				
			||||||
                    timeout=10)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        response = session.get(API_URL, headers=HEADERS, timeout=10)
 | 
					        response = session.get(API_URL, headers=HEADERS, timeout=10)
 | 
				
			||||||
        logging.info(f"Réponse de l'API : {response.status_code}")
 | 
					        logging.info(f"Réponse de l'API : {response.status_code}")
 | 
				
			||||||
        response.raise_for_status()
 | 
					        response.raise_for_status()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user