test.py: download telegram rather than termux

since telegram is supported by far more devices than termux

Signed-off-by: Domenico Iezzi <domenico.iezzi.201@gmail.com>
This commit is contained in:
Domenico Iezzi 2017-10-13 18:18:22 +02:00
parent ed2d658f61
commit b6e3474a79

View File

@ -21,7 +21,7 @@ server.login(None, None, gsfId, authSubToken)
# SEARCH # SEARCH
apps = server.search('termux', 34, None) apps = server.search('telegram', 34, None)
print('nb_result: 34') print('nb_result: 34')
print('number of results: %d' % len(apps)) print('number of results: %d' % len(apps))
@ -33,7 +33,7 @@ for a in apps:
# DOWNLOAD # DOWNLOAD
docid = apps[0]['docId'] docid = apps[0]['docId']
version = apps[0]['versionCode'] version = apps[0]['versionCode']
print('\nTermux docid is: %s\n' % docid) print('\nTelegram docid is: %s\n' % docid)
print('\nAttempting to download %s\n' % docid) print('\nAttempting to download %s\n' % docid)
fl = server.download(docid, version, progress_bar=True) fl = server.download(docid, version, progress_bar=True)
with open(docid + '.apk', 'wb') as f: with open(docid + '.apk', 'wb') as f: