mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 12:54:58 +00:00
Add ability to show download progression
Signed-off-by: Matlink <matlink@matlink.fr>
This commit is contained in:
parent
e4ccae0d43
commit
79f02dd8ad
@ -9,6 +9,7 @@ from Crypto.Util import asn1
|
|||||||
from Crypto.PublicKey import RSA
|
from Crypto.PublicKey import RSA
|
||||||
from Crypto.Hash import SHA
|
from Crypto.Hash import SHA
|
||||||
from Crypto.Cipher import PKCS1_OAEP
|
from Crypto.Cipher import PKCS1_OAEP
|
||||||
|
from clint.textui import progress
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
import base64
|
import base64
|
||||||
@ -406,7 +407,7 @@ class GooglePlayAPI(object):
|
|||||||
return message.payload.reviewResponse
|
return message.payload.reviewResponse
|
||||||
|
|
||||||
def delivery(self, packageName, versionCode,
|
def delivery(self, packageName, versionCode,
|
||||||
offerType=1, downloadToken=None):
|
offerType=1, downloadToken=None, progress_bar=False):
|
||||||
"""Download an already purchased app.
|
"""Download an already purchased app.
|
||||||
|
|
||||||
packageName is the app unique ID (usually starting with 'com.').
|
packageName is the app unique ID (usually starting with 'com.').
|
||||||
@ -434,11 +435,19 @@ class GooglePlayAPI(object):
|
|||||||
cookies = {
|
cookies = {
|
||||||
str(cookie.name): str(cookie.value)
|
str(cookie.name): str(cookie.value)
|
||||||
}
|
}
|
||||||
|
if not progress_bar:
|
||||||
return requests.get(downloadUrl, headers=headers,
|
return requests.get(downloadUrl, headers=headers,
|
||||||
cookies=cookies, verify=ssl_verify).content
|
cookies=cookies, verify=ssl_verify).content
|
||||||
|
|
||||||
|
response_content = bytes()
|
||||||
|
response = requests.get(downloadUrl, headers=headers, cookies=cookies, verify=ssl_verify, stream=True)
|
||||||
|
total_length = int(response.headers.get('content-length'))
|
||||||
|
for chunk in progress.bar(response.iter_content(chunk_size=1024), expected_size=(total_length >> 10) + 1):
|
||||||
|
response_content += chunk
|
||||||
|
return response_content
|
||||||
|
|
||||||
def download(self, packageName, versionCode,
|
def download(self, packageName, versionCode,
|
||||||
offerType=1):
|
offerType=1, progress_bar=False):
|
||||||
"""Download an app and return its raw data (APK file). Free apps need
|
"""Download an app and return its raw data (APK file). Free apps need
|
||||||
to be "purchased" first, in order to retrieve the download cookie.
|
to be "purchased" first, in order to retrieve the download cookie.
|
||||||
If you want to download an already purchased app, use *delivery* method.
|
If you want to download an already purchased app, use *delivery* method.
|
||||||
@ -468,5 +477,5 @@ class GooglePlayAPI(object):
|
|||||||
else:
|
else:
|
||||||
dlToken = resObj.payload.buyResponse.downloadToken
|
dlToken = resObj.payload.buyResponse.downloadToken
|
||||||
return self.delivery(packageName, versionCode,
|
return self.delivery(packageName, versionCode,
|
||||||
offerType, dlToken)
|
offerType, dlToken, progress_bar=progress_bar)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user