(file)
| 6 | |
| 7 | |
| 8 | def coordinates(file): |
| 9 | wanted_props = ["X", "Y", "Z"] |
| 10 | # This will early exit parsing after just 10k ticks |
| 11 | wanted_ticks = [x for x in range(5000, 10000)] |
| 12 | parser = DemoParser(file) |
| 13 | # You can remove optional arguments to get all tick or all players |
| 14 | df = parser.parse_ticks(wanted_props, ticks=wanted_ticks) |
| 15 | return df |
| 16 | |
| 17 | |
| 18 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected