Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaiserdragon2/pgpemukeyformatter
A little tool to format the data for the PGPemu project provided by "Suota Go+" app.
https://github.com/kaiserdragon2/pgpemukeyformatter
esp32 pgpemu pokemon-go pokemon-go-plus pokemon-go-tool pokemongo
Last synced: about 2 months ago
JSON representation
A little tool to format the data for the PGPemu project provided by "Suota Go+" app.
- Host: GitHub
- URL: https://github.com/kaiserdragon2/pgpemukeyformatter
- Owner: Kaiserdragon2
- Created: 2020-07-19T12:40:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-15T18:09:12.000Z (about 1 year ago)
- Last Synced: 2023-10-16T17:20:03.738Z (about 1 year ago)
- Topics: esp32, pgpemu, pokemon-go, pokemon-go-plus, pokemon-go-tool, pokemongo
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 11
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# PGPemuKeyFormatter
This tool is used to format the data provided by the "Suota Go+" app from Jesus Bamford (https://github.com/Jesus805/Suota-Go-Plus)
to fit the needs of the PGPemu Project for the ESP32 from Yohanes Nugroho (https://github.com/yohanes/pgpemu).
To Download the SuotaGo+ App: https://github.com/Jesus805/Suota-Go-Plus/releases/tag/v1.0## How to use
### Command-Line Usage:
```
python PGPemuKeyFormatter.py --path path_to_your_data.json
```If your JSON file is in the same directory as the script and named "data.json," you can run the script without specifying the --path option:
```
python PGPemuKeyFormatter.py
```The script generates a file called secrets.c in the dictonary it is run.
Just replace the secrets.c file in the [pgpemu project](https://github.com/yohanes/pgpemu) with this generated one.### Required Libraries:
Ensure that you have the argparse library available in your Python environment. If it's not installed, you can typically install it using pip:
```
pip install argparse
```