Hello. Need help, please guys :) There are 2 questions that i dont understand.
-
I use
response = cs.wait_event('full_match_info', timeout=30, raises=False)
for get the game data from user last match. But whats the format i getting on response?
I tried to use str(response[0]) and next decode by json.loads(), but i get an json decode error.
How can i decode this data to dict or something like that??? (wrote down)
-
How the sites like csgostats.gg and other get the all info about match?
like flashes, flash assists, jumpshots, the accuracy with AK-47, grenade damage etc. I can get only kill, assists, headshots and score (very little info) via cs.request_full_match_info(). Is it possible to get more data via that python module?
The response data i want to decode or something like that:
msgrequestid: 9147
accountid: 1185931041
servertime: 1614835709
matches {
matchid: 3467736107796398755
matchtime: 1614790460
watchablematchinfo {
server_ip: 181
tv_port: 1806964191
tv_spectators: 0
cl_decryptdata_key_pub: 8411663965113195703
}
roundstatsall {
reservation {
account_ids: 325391327
account_ids: 55022319
account_ids: 199873381
account_ids: 92583876
account_ids: 97254842
account_ids: 354762908
account_ids: 138651512
account_ids: 841090319
account_ids: 183710739
account_ids: 119649041
}
etc
Hello. Need help, please guys :) There are 2 questions that i dont understand.
I use
response = cs.wait_event('full_match_info', timeout=30, raises=False)for get the game data from user last match. But whats the format i getting on response?
I tried to use
str(response[0])and next decode byjson.loads(), but i get an json decode error.How can i decode this data to dict or something like that??? (wrote down)
How the sites like csgostats.gg and other get the all info about match?
like flashes, flash assists, jumpshots, the accuracy with AK-47, grenade damage etc. I can get only kill, assists, headshots and score (very little info) via
cs.request_full_match_info(). Is it possible to get more data via that python module?The response data i want to decode or something like that:
etc