-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlfromchnrit.py
44 lines (36 loc) · 1.89 KB
/
dlfromchnrit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
##############
#
# SCPDL
# (School Computer Programs Downloader, 학교컴 프로그램 다운)
#
# Author: Chnrit (Chnrit@github)
# License: MIT
#
##############
from urllib.request import urlretrieve
import os
from time import sleep
print("SCPD 폴더를 생성합니다...")
os.mkdir("SCPD")
print("SCPD 폴더 생성이 완료되었습니다.")
print("nProtectOnlineSecurity_Uninstall.exe 다운로드 중...")
print("Request: https://static.chnrit.com/downloads/SCPD/1.0.0/nProtectOnlineSecurity_Uninstall.exe")
urlretrieve("https://static.chnrit.com/downloads/SCPD/1.0.0/nProtectOnlineSecurity_Uninstall.exe", "./SCPD/nProtectOnlineSecurity_Uninstall.exe")
print("nProtectOnlineSecurity_Uninstall.exe 파일 다운로드가 완료되었습니다.")
print("Firefox.exe 다운로드 중...")
print("Request: https://download.mozilla.org/?product=firefox-latest-ssl&os=win&lang=ko")
urlretrieve("https://download.mozilla.org/?product=firefox-latest-ssl&os=win&lang=ko", "./SCPD/Firefox.exe")
print("Firefox.exe 파일 다운로드가 완료되었습니다.")
print("PowerToysSetup-0.45.0.exe 다운로드 중...")
print("Request: https://static.chnrit.com/downloads/SCPD/1.0.0/PowerToysSetup-0.45.0-x64.exe")
urlretrieve("https://static.chnrit.com/downloads/SCPD/1.0.0/PowerToysSetup-0.45.0-x64.exe", "./SCPD/PowerToysSetup-0.45.0.exe")
print("PowerToysSetup-0.45.0.exe 파일 다운로드가 완료되었습니다.")
print("Git-2.33.0.2-64-bit.exe 다운로드 중...")
print("Request: https://static.chnrit.com/downloads/SCPD/1.0.0/Git-2.33.0.2-64-bit.exe")
urlretrieve("https://static.chnrit.com/downloads/SCPD/1.0.0/Git-2.33.0.2-64-bit.exe", "./SCPD/Git-2.33.0.2-64-bit.exe")
print("Git-2.33.0.2-64-bit.exe 파일 다운로드가 완료되었습니다.")
location = os.getcwd()
# open explore.exe
print("자동으로 창이 닫히고 파일 탐색기가 열립니다...")
sleep(0.5)
os.startfile(location + "/SCPD/")