mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 23:05:17 -04:00
12 lines
309 B
Python
12 lines
309 B
Python
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)
|
|
|