import requests import subprocess import os from dotenv import load_dotenv load_dotenv() webhook_url = os.environ.get("WEBHOOK_URL") print(webhook_url) bun_path = '/home/user/.bun/bin/bun' result = subprocess.run([bun_path, "run", "getWishlist.mjs"], capture_output=True, text=True) requests.post( webhook_url, json={"content": result.stdout} )