https://github.com/miguelestradam36/python-pokeapi-json
Python script - Recursive request to Pokemon API (PokeAPI)
https://github.com/miguelestradam36/python-pokeapi-json
json makefile pokeapi-pokedex python python-script
Last synced: about 1 year ago
JSON representation
Python script - Recursive request to Pokemon API (PokeAPI)
- Host: GitHub
- URL: https://github.com/miguelestradam36/python-pokeapi-json
- Owner: miguelestradam36
- Created: 2022-10-23T08:28:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-06T00:56:48.000Z (about 1 year ago)
- Last Synced: 2025-02-06T01:29:43.003Z (about 1 year ago)
- Topics: json, makefile, pokeapi-pokedex, python, python-script
- Language: Python
- Homepage:
- Size: 76.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PokeApi Pyton Connector
Python script connector *GET* to Pokemon API.
Python Script to generate JSON file with the information stored of all pokemons

## Test your env and script
Some scripts were made to test the requirements, python version and also the connection to the API used in this project.
```shell
pytest tests/
```
or
```shell
python -m pytest tests/
```
---
Also, to test the requirements are indeed in your enviroment, you can run the tox command
```shell
tox
```
Please remind that before running the tox command, you need to install `tox`:
```shell
pip install tox
```
## On the other hand
You can automate the execution of the python file by using
### Use MAKE GNU
Through the following command, after having installed **MAKE GNU** into your computer, you can automate the scripting of this python file.
```shell
make pokeapi-json
```