mirror of
https://github.com/Paillat-dev/discord-emojis.git
synced 2026-01-02 09:06:19 +00:00
First commit
This commit is contained in:
10
src/download_build.py
Normal file
10
src/download_build.py
Normal 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
|
||||
Reference in New Issue
Block a user