Added an extract-google-files script (python)

This commit is contained in:
ctso 2010-06-25 03:10:02 +00:00
parent 5e75a672fe
commit 40a64b041e
1 changed files with 46 additions and 0 deletions

46
extract-google-files Executable file
View File

@ -0,0 +1,46 @@
#!/usr/bin/env python
import sys, random, urllib2, zipfile, StringIO, os
from optparse import OptionParser
FILENAME="gapps-passion-FRF83-signed.zip"
MIRRORS=["http://www.kanged.net/up/files/1/",]
def device():
print "usage: extract-google-files -m [method]"
print "Note: Device method is currently not implemented, please use download"
sys.exit(1)
def download():
try:
os.makedirs("proprietary")
except:
pass
os.chdir("proprietary")
if len(MIRRORS) > 1:
i = random.randrange(0, len(MIRRORS)-1)
else:
i = 0
url = MIRRORS[i] + FILENAME
print "Fetching from %s" % url
data = urllib2.urlopen(url).read()
zip = zipfile.ZipFile(StringIO.StringIO(data),'r')
for filename in zip.namelist():
if filename.split("/")[0] == "system":
print "Extracting %s" % filename
zip.extract(filename)
def main():
parser = OptionParser(usage="usage: %prog [options]")
parser.add_option("-m", "--method", dest='method', default="device", help="Extraction Method: device, download [default: device]")
(options, args) = parser.parse_args()
if options.method == "device":
return device()
if options.method == "download":
return download()
if __name__ == '__main__':
main()