mirror of
https://github.com/Paillat-dev/discord-emojis.git
synced 2026-01-02 09:06:19 +00:00
11 lines
290 B
Python
11 lines
290 B
Python
|
|
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
|