-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunpackw2p.py
32 lines (28 loc) · 877 Bytes
/
unpackw2p.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
import tarfile
import os
# build package/dir list
projects = [{'package':item,'dir':item.split('.')[2:3][0]}
for item in os.listdir('./')
if item.startswith('web2py.app.')]
opener, mode = tarfile.open, 'r:gz'
# iterate over each create directory then unpack into the target directory
startdir = os.getcwd()
os.mkdir('unpacked')
for project in projects:
targetdir = 'unpacked/' + project['dir'].replace('-','_')
# make the directory
print 'making ', targetdir
try:
os.mkdir(targetdir)
except OSError:
pass
# enter the directory
print 'entering ', targetdir
os.chdir(targetdir)
print "now in ", os.getcwd()
# unpack the package
path = startdir + '/' + project['package']
print 'unpacking ', path
file = opener(path, mode)
file.extractall()
os.chdir(startdir)