(self)
| 1176 | return full_path |
| 1177 | |
| 1178 | def _setup_api(self): |
| 1179 | # instantiate pgoapi @var ApiWrapper |
| 1180 | self.api = ApiWrapper(config=self.config) |
| 1181 | |
| 1182 | # provide player position on the earth |
| 1183 | self._set_starting_position() |
| 1184 | |
| 1185 | self.login() |
| 1186 | # chain subrequests (methods) into one RPC call |
| 1187 | |
| 1188 | #self.api.set_signature_lib(self.get_encryption_lib()) |
| 1189 | #self.api.set_hash_lib(self.get_hash_lib()) |
| 1190 | |
| 1191 | self.logger.info('') |
| 1192 | # send empty map_cells and then our position |
| 1193 | self.update_web_location() |
| 1194 | |
| 1195 | def _print_character_info(self): |
| 1196 | # get player profile call |
no test coverage detected