Skip to content

Commit

Permalink
a.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuder authored Nov 26, 2024
0 parents commit 73a65eb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import gdown

# URL file Google Drive
url = "https://drive.google.com/uc?id=1WlzOMBtITNea7X8Qu-EIo0rErRq4SAg_"

# Đường dẫn lưu file sau khi tải
output = "/mnt/win10.zip" # Đổi tên file tùy ý

# Tải file
gdown.download(url, output, quiet=False)

print(f"File đã được tải về và lưu tại: {output}")

0 comments on commit 73a65eb

Please sign in to comment.