我想在文件下载完成后立即关闭浏览器。我有下面的代码,但它没有关闭浏览器。我在某处肯定是错的。请帮帮我。
null
答案 0 :(得分:2)
答案 1 :(得分:0)
我为zip文件下载编写了一种下载方法,这可能会有所帮助。点击下载按钮后,将调用此方法并等待下载完成
def downloader() :
print("File Download Started.......")
sleep(60)
while True:
file = glob.glob(BASE_FILE_DIR+'*.zip.part')
if file:
print("Download Pending.......")
sleep(60)
continue
else:
print('File Downloaded')
break