Files
discord-emojis/src/download_build.py

14 lines
350 B
Python
Raw Normal View History

# Copyright (c) Paillat-dev
# SPDX-License-Identifier: MIT
2025-05-03 16:22:11 +02:00
import requests
URL = "https://raw.githubusercontent.com/Discord-Datamining/Discord-Datamining/refs/heads/master/current.js"
def dowload() -> str:
print("Downloading the latest discord build")
response = requests.get(URL)
response.raise_for_status()
return response.text