Metadata-Version: 2.1
Name: pokemon-go-video-analysis
Version: 0.0.0.0.5.3
Summary: Pokemon Go Video Analysis
Home-page: https://github.com/prateekt/pokemon-go-video-analysis
Author: Prateek Tandon
Author-email: prateek1.tandon@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Pokémon Go Video Analysis

Tools for analyzing Pokémon Go Player vs. Player (PvP) Videos.

```commandline
from battle_logger.pipeline import BattleLoggerPipeline

pogo_pipeline = BattleLoggerPipeline()
output = pogo_pipeline.exec('path/to/video')
pogo_pipeline.save_output(out_path="test_output", basename="battle_logger_output")
```

Extract battles from videos and analyze what Pokémon appear in which battles:

![](https://github.com/prateekt/pokemon-go-video-analysis/blob/552dfc95d5643b7ab8f40f162e13f6461d0ff888/readme_figs/battle_1.png?raw=True)

Log your battles and analyze your Pokémon's performance:

![](https://github.com/prateekt/pokemon-go-video-analysis/blob/552dfc95d5643b7ab8f40f162e13f6461d0ff888/readme_figs/example_table.png?raw=True)

<b>Installation:</b>

```
make conda_dev
conda activate pogo_video_analysis_env
pip install pokemon-go-video-analysis
```
