-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlfromserver.py
68 lines (52 loc) · 2.34 KB
/
dlfromserver.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
##############
#
# SCPD
# (School Computer Programs Downloader, 학교컴 프로그램 다운)
#
# Author: Chnrit (Chnrit@github)
# License: MIT
# GitHub: https://github.com/Chnrit/School-Computer-Programs-Downloader
# Version: 1.0.1.3
#
##############
from urllib.request import urlretrieve
import os
import os.path
import shutil
from time import sleep
# download에 대한 함수를 정의
def download(filename, fileurl):
print(filename + " 다운로드 중...")
print("요청: " + fileurl)
urlretrieve(fileurl, "./SCPD/" + filename)
print(filename + "파일 다운로드가 완료되었습니다.\n")
# 폴더 체크 단계
dir = "SCPD"
print(dir +" 폴더 생성을 시도합니다...")
if os.path.isdir(dir):
print(dir + " 폴더가 이미 존재합니다.")
SCPDFileList = os.listdir(dir)
modifiedFileList = ', '.join(SCPDFileList)
print("폴더에 존재하는 파일: {}".format(modifiedFileList))
print("**중요** 폴더를 삭제한 후 프로그램을 다시 실행해 주세요.")
deldir = input("폴더를 삭제할까요? [Y/n] ")
if deldir == "Y" or deldir == "y":
shutil.rmtree(dir)
print(dir + " 폴더를 삭제했습니다.")
else:
print(dir + " 폴더 삭제를 취소했습니다.")
else:
os.mkdir("SCPD")
print("SCPD 폴더 생성이 완료되었습니다.\n")
download("nProtectOnlineSecurity_Uninstall.exe", "https://update.nprotect.net/cs/nos/uninstall/nProtectOnlineSecurity_Uninstall.exe")
download("Firefox.exe", "https://download.mozilla.org/?product=firefox-latest-ssl&os=win&lang=ko")
download("FirefoxDeveloperEdition.exe", "https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=win&lang=ko")
download("PowerToysSetup-0.45.0.exe", "https://github.com/microsoft/PowerToys/releases/download/v0.45.0/PowerToysSetup-0.45.0-x64.exe")
download("Git-2.33.0.2-64-bit.exe", "https://github.com/git-for-windows/git/releases/download/v2.33.0.windows.2/Git-2.33.0.2-64-bit.exe")
download("DiscordSetup.exe", "https://discord.com/api/download?platform=win")
download("Python3.9.7.exe", "https://www.python.org/ftp/python/3.9.7/python-3.9.7-amd64.exe")
location = os.getcwd()
# open explore.exe
print("자동으로 창이 닫히고 파일 탐색기가 열립니다...")
sleep(0.5)
os.startfile(location + "/SCPD/")