forked from pytorch/serve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell_utils.py
41 lines (33 loc) · 1.01 KB
/
shell_utils.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
import requests
import os
import shutil
import glob
from pathlib import Path
def download_save(url, path=None, filename=None):
if not filename:
filename = url.split('/')[-1]
if path:
filename = os.path.join(path, filename)
print(f"Downloading from url : {url}")
resp = requests.get(url)
with open(filename, 'wb') as f:
print(f"Saving data to file : {filename}")
f.write(resp.content)
def rm_file(path, regex=False):
if regex:
file_list = glob.glob(path, recursive=True)
else:
file_list = [path]
for file in file_list:
path = Path(file)
if os.path.exists(path):
print(f"Removing file : {path}")
os.remove(path)
def rm_dir(path):
path = Path(path)
if os.path.exists(path):
print(f"Deleting directory : {path}")
shutil.rmtree(path)
def unzip(filename, destination, arc_type):
shutil.unpack_archive(filename, destination, arc_type)
print("Archive file unpacked successfully.")