├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pullapprove.yml ├── .pylintrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── __init__.py ├── encounter.py ├── evolution_result.py ├── exceptions │ └── __init__.py ├── inventory_parser.py ├── item.py ├── json_encodable.py ├── player.py ├── pokemon.py ├── state_manager.py └── worldmap.py ├── app ├── __init__.py ├── exceptions.py ├── kernel.py ├── plugin.py ├── plugin_manager.py ├── service_container.py └── tests │ ├── __init__.py │ ├── config │ ├── config.yml │ └── plugins │ │ └── another_test_plugin.yml │ ├── kernel_test.py │ ├── plugins │ ├── __init__.py │ ├── another_test_plugin │ │ └── __init__.py │ └── test_plugin │ │ └── __init__.py │ ├── plugins_test.py │ └── service_container_test.py ├── appveyor.yml ├── config ├── config.yml.example └── plugins │ ├── egg_incubator.yml.example │ ├── evolve_pokemon.yml.example │ ├── recycle_items.yml.example │ ├── socket.yml.example │ └── transfer_pokemon.yml.example ├── data ├── items.json └── pokemon.json ├── docs ├── navigation.md ├── service-container.md └── testing.md ├── lib ├── Makefile ├── build_dll.bat ├── encrypt.h └── put_encrypt.c_in_here.txt ├── plugins ├── __init__.py ├── catch_pokemon │ └── __init__.py ├── collect_rewards │ └── __init__.py ├── egg_incubator │ └── __init__.py ├── evolver │ └── __init__.py ├── recycle_items │ └── __init__.py ├── socket │ ├── __init__.py │ ├── botevents.py │ ├── myjson.py │ └── uievents.py ├── spin_pokestop │ └── __init__.py └── transfer_pokemon │ ├── __init__.py │ └── tests │ └── transfer_pokemon_test.py ├── pokecli.py ├── pokemongo_bot ├── __init__.py ├── bot.py ├── event_manager.py ├── human_behaviour.py ├── item_list.py ├── logger.py ├── mapper.py ├── navigation │ ├── __init__.py │ ├── camper_navigator.py │ ├── destination.py │ ├── fort_navigator.py │ ├── go_there_navigator.py │ ├── navigator.py │ ├── path_finder │ │ ├── __init__.py │ │ ├── direct_path_finder.py │ │ ├── google_path_finder.py │ │ └── path_finder.py │ └── waypoint_navigator.py ├── service │ ├── __init__.py │ ├── player.py │ └── pokemon.py ├── stepper.py ├── tests │ ├── __init__.py │ ├── bot_test.py │ ├── event_manager_test.py │ ├── logger_test.py │ ├── mapper_test.py │ ├── navigation │ │ ├── __init__.py │ │ ├── camper_navigator_test.py │ │ ├── destination_test.py │ │ ├── fort_navigator_test.py │ │ ├── path_finder │ │ │ ├── __init__.py │ │ │ ├── direct_path_finder_test.py │ │ │ └── google_path_finder_test.py │ │ └── waypoint_navigator_test.py │ ├── service │ │ ├── __init__.py │ │ └── player_test.py │ ├── stepper_test.py │ └── utils_test.py └── utils.py ├── requirements-dev.txt ├── requirements.txt └── scripts └── checkout-pr.sh /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/encounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/encounter.py -------------------------------------------------------------------------------- /api/evolution_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/evolution_result.py -------------------------------------------------------------------------------- /api/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/exceptions/__init__.py -------------------------------------------------------------------------------- /api/inventory_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/inventory_parser.py -------------------------------------------------------------------------------- /api/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/item.py -------------------------------------------------------------------------------- /api/json_encodable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/json_encodable.py -------------------------------------------------------------------------------- /api/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/player.py -------------------------------------------------------------------------------- /api/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/pokemon.py -------------------------------------------------------------------------------- /api/state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/state_manager.py -------------------------------------------------------------------------------- /api/worldmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/api/worldmap.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/exceptions.py -------------------------------------------------------------------------------- /app/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/kernel.py -------------------------------------------------------------------------------- /app/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/plugin.py -------------------------------------------------------------------------------- /app/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/plugin_manager.py -------------------------------------------------------------------------------- /app/service_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/service_container.py -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/__init__.py -------------------------------------------------------------------------------- /app/tests/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/config/config.yml -------------------------------------------------------------------------------- /app/tests/config/plugins/another_test_plugin.yml: -------------------------------------------------------------------------------- 1 | test_option: 123 2 | -------------------------------------------------------------------------------- /app/tests/kernel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/kernel_test.py -------------------------------------------------------------------------------- /app/tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/plugins/another_test_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/plugins/another_test_plugin/__init__.py -------------------------------------------------------------------------------- /app/tests/plugins/test_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/plugins/test_plugin/__init__.py -------------------------------------------------------------------------------- /app/tests/plugins_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/plugins_test.py -------------------------------------------------------------------------------- /app/tests/service_container_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/app/tests/service_container_test.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config/config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/config.yml.example -------------------------------------------------------------------------------- /config/plugins/egg_incubator.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/plugins/egg_incubator.yml.example -------------------------------------------------------------------------------- /config/plugins/evolve_pokemon.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/plugins/evolve_pokemon.yml.example -------------------------------------------------------------------------------- /config/plugins/recycle_items.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/plugins/recycle_items.yml.example -------------------------------------------------------------------------------- /config/plugins/socket.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/plugins/socket.yml.example -------------------------------------------------------------------------------- /config/plugins/transfer_pokemon.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/config/plugins/transfer_pokemon.yml.example -------------------------------------------------------------------------------- /data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/data/items.json -------------------------------------------------------------------------------- /data/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/data/pokemon.json -------------------------------------------------------------------------------- /docs/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/docs/navigation.md -------------------------------------------------------------------------------- /docs/service-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/docs/service-container.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/docs/testing.md -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/build_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/lib/build_dll.bat -------------------------------------------------------------------------------- /lib/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/lib/encrypt.h -------------------------------------------------------------------------------- /lib/put_encrypt.c_in_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/catch_pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/catch_pokemon/__init__.py -------------------------------------------------------------------------------- /plugins/collect_rewards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/collect_rewards/__init__.py -------------------------------------------------------------------------------- /plugins/egg_incubator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/egg_incubator/__init__.py -------------------------------------------------------------------------------- /plugins/evolver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/evolver/__init__.py -------------------------------------------------------------------------------- /plugins/recycle_items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/recycle_items/__init__.py -------------------------------------------------------------------------------- /plugins/socket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/socket/__init__.py -------------------------------------------------------------------------------- /plugins/socket/botevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/socket/botevents.py -------------------------------------------------------------------------------- /plugins/socket/myjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/socket/myjson.py -------------------------------------------------------------------------------- /plugins/socket/uievents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/socket/uievents.py -------------------------------------------------------------------------------- /plugins/spin_pokestop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/spin_pokestop/__init__.py -------------------------------------------------------------------------------- /plugins/transfer_pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/transfer_pokemon/__init__.py -------------------------------------------------------------------------------- /plugins/transfer_pokemon/tests/transfer_pokemon_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/plugins/transfer_pokemon/tests/transfer_pokemon_test.py -------------------------------------------------------------------------------- /pokecli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokecli.py -------------------------------------------------------------------------------- /pokemongo_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/bot.py -------------------------------------------------------------------------------- /pokemongo_bot/event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/event_manager.py -------------------------------------------------------------------------------- /pokemongo_bot/human_behaviour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/human_behaviour.py -------------------------------------------------------------------------------- /pokemongo_bot/item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/item_list.py -------------------------------------------------------------------------------- /pokemongo_bot/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/logger.py -------------------------------------------------------------------------------- /pokemongo_bot/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/mapper.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/camper_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/camper_navigator.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/destination.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/fort_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/fort_navigator.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/go_there_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/go_there_navigator.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/navigator.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/path_finder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/path_finder/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/path_finder/direct_path_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/path_finder/direct_path_finder.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/path_finder/google_path_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/path_finder/google_path_finder.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/path_finder/path_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/path_finder/path_finder.py -------------------------------------------------------------------------------- /pokemongo_bot/navigation/waypoint_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/navigation/waypoint_navigator.py -------------------------------------------------------------------------------- /pokemongo_bot/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/service/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/service/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/service/player.py -------------------------------------------------------------------------------- /pokemongo_bot/service/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/service/pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/stepper.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/bot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/bot_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/event_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/event_manager_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/logger_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/logger_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/mapper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/mapper_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/camper_navigator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/camper_navigator_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/destination_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/destination_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/fort_navigator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/fort_navigator_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/path_finder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/path_finder/direct_path_finder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/path_finder/direct_path_finder_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/path_finder/google_path_finder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/path_finder/google_path_finder_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/navigation/waypoint_navigator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/navigation/waypoint_navigator_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/tests/service/player_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/service/player_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/stepper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/stepper_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/tests/utils_test.py -------------------------------------------------------------------------------- /pokemongo_bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/pokemongo_bot/utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/checkout-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehp/OpenPoGoBot/HEAD/scripts/checkout-pr.sh --------------------------------------------------------------------------------