mirror of
https://github.com/zeldaret/ph
synced 2026-08-18 05:18:17 -04:00
Toolchain setup script
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import requests
|
||||
import zipfile
|
||||
import io
|
||||
from pathlib import Path
|
||||
|
||||
tools_path = Path(__file__).parent
|
||||
|
||||
response = requests.get('https://cdn.discordapp.com/attachments/698589325620936736/845499146982129684/mwccarm.zip')
|
||||
zip_file = zipfile.ZipFile(io.BytesIO(response.content))
|
||||
zip_file.extractall(tools_path)
|
||||
|
||||
Reference in New Issue
Block a user