mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-24 13:54:57 +00:00
Fix protobuf generation and test file
* It seems that new versions of protobuf compiler requires the input protobuf file name to have a prefix of the --proto_path, relative path does not work in this case * Fix two null exceptions in test/test.py where docid does not present in the query result
This commit is contained in:
parent
0ca0f65f75
commit
96387b2407
2
setup.py
2
setup.py
@ -20,7 +20,7 @@ class ProtobufBuilder(_build):
|
||||
subprocess.run([PROTOC_BIN,
|
||||
"--proto_path=" + CURRENT_DIR,
|
||||
"--python_out=" + CURRENT_DIR + "/gpapi/",
|
||||
"googleplay.proto"])
|
||||
CURRENT_DIR + "/googleplay.proto"])
|
||||
super().run()
|
||||
|
||||
setup(name='gpapi',
|
||||
|
@ -18,6 +18,7 @@ print(server.searchSuggest("fir"))
|
||||
|
||||
result = server.search("firefox")
|
||||
for doc in result:
|
||||
if 'docid' in doc:
|
||||
print("doc: {}".format(doc["docid"]))
|
||||
for cluster in doc["child"]:
|
||||
print("\tcluster: {}".format(cluster["docid"]))
|
||||
@ -80,6 +81,7 @@ print("\nBrowsing the {} category\n".format(sampleCat))
|
||||
browseCat = server.home(cat=sampleCat)
|
||||
|
||||
for doc in browseCat:
|
||||
if 'docid' in doc:
|
||||
print("doc: {}".format(doc["docid"]))
|
||||
for child in doc["child"]:
|
||||
print("\tsubcat: {}".format(child["docid"]))
|
||||
|
Loading…
Reference in New Issue
Block a user