mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 12:54:58 +00:00
Added exception handling in test file
Signed-off-by: Domenico Iezzi <domenico.iezzi.201@gmail.com>
This commit is contained in:
parent
171faefc60
commit
1cd3b7598b
@ -9,6 +9,10 @@ SEPARATOR = ";"
|
|||||||
LANG = "en_US"
|
LANG = "en_US"
|
||||||
GOOGLE_PUBKEY = "AAAAgMom/1a/v0lblO2Ubrt60J2gcuXSljGFQXgcyZWveWLEwo6prwgi3iJIZdodyhKZQrNWp5nKJ3srRXcUW+F1BD3baEVGcmEgqaLZUNBjm057pKRI16kB0YppeGx5qIQ5QjKzsR8ETQbKLNWgRY0QRNVz34kMJR3P/LgHax/6rmf5AAAAAwEAAQ=="
|
GOOGLE_PUBKEY = "AAAAgMom/1a/v0lblO2Ubrt60J2gcuXSljGFQXgcyZWveWLEwo6prwgi3iJIZdodyhKZQrNWp5nKJ3srRXcUW+F1BD3baEVGcmEgqaLZUNBjm057pKRI16kB0YppeGx5qIQ5QjKzsR8ETQbKLNWgRY0QRNVz34kMJR3P/LgHax/6rmf5AAAAAwEAAQ=="
|
||||||
|
|
||||||
|
# parse phone config from the file 'device.properties'.
|
||||||
|
# if you want to add another phone, just create another section in
|
||||||
|
# the file. Some configurations for common phones can be found here:
|
||||||
|
# https://github.com/yeriomin/play-store-api/tree/master/src/main/resources
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
filepath = os.path.join( os.path.dirname( os.path.realpath(__file__) ), 'device.properties')
|
filepath = os.path.join( os.path.dirname( os.path.realpath(__file__) ), 'device.properties')
|
||||||
config.read(filepath)
|
config.read(filepath)
|
||||||
@ -16,13 +20,15 @@ device = {}
|
|||||||
for (key, value) in config.items('angler'):
|
for (key, value) in config.items('angler'):
|
||||||
device[key] = value
|
device[key] = value
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def getDeviceConfig():
|
||||||
libList = device['sharedlibraries'].split(",")
|
libList = device['sharedlibraries'].split(",")
|
||||||
featureList = device['features'].split(",")
|
featureList = device['features'].split(",")
|
||||||
localeList = device['locales'].split(",")
|
localeList = device['locales'].split(",")
|
||||||
glList = device['gl.extensions'].split(",")
|
glList = device['gl.extensions'].split(",")
|
||||||
platforms = device['platforms'].split(",")
|
platforms = device['platforms'].split(",")
|
||||||
|
|
||||||
def getDeviceConfig():
|
|
||||||
deviceConfig = googleplay_pb2.DeviceConfigurationProto()
|
deviceConfig = googleplay_pb2.DeviceConfigurationProto()
|
||||||
deviceConfig.touchScreen = int(device['touchscreen'])
|
deviceConfig.touchScreen = int(device['touchscreen'])
|
||||||
deviceConfig.keyboard = int(device['keyboard'])
|
deviceConfig.keyboard = int(device['keyboard'])
|
||||||
|
6
test.py
6
test.py
@ -1,11 +1,14 @@
|
|||||||
from googleplay import GooglePlayAPI
|
from googleplay import GooglePlayAPI
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
EMAIL = ""
|
EMAIL = ""
|
||||||
PASSWD = ""
|
PASSWD = ""
|
||||||
|
|
||||||
testApps = ['com.cpuid.cpu_z']
|
testApps = ['com.cpuid.cpu_z']
|
||||||
server = GooglePlayAPI(True)
|
server = GooglePlayAPI(True)
|
||||||
|
|
||||||
|
try:
|
||||||
print('\nLogging in with email and password\n')
|
print('\nLogging in with email and password\n')
|
||||||
server.login(EMAIL, PASSWD, None, None)
|
server.login(EMAIL, PASSWD, None, None)
|
||||||
ac2dmToken = server.ac2dmToken
|
ac2dmToken = server.ac2dmToken
|
||||||
@ -30,3 +33,6 @@ with open(docid + '.apk', 'wb') as f:
|
|||||||
print('\nGetting details for %s\n' % testApps[0])
|
print('\nGetting details for %s\n' % testApps[0])
|
||||||
bulk = server.bulkDetails(testApps)
|
bulk = server.bulkDetails(testApps)
|
||||||
print(bulk)
|
print(bulk)
|
||||||
|
except Exception as e:
|
||||||
|
print(str(e))
|
||||||
|
sys.exit(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user