First commit

This commit is contained in:
2025-05-03 16:22:11 +02:00
commit 5c622e590f
11 changed files with 39956 additions and 0 deletions

10
src/download_build.py Normal file
View File

@@ -0,0 +1,10 @@
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