pokeapi/README.md

197 lines
8.3 KiB
Markdown
Raw Normal View History

2019-01-04 14:37:59 +00:00
# PokéAPI [![build status](https://img.shields.io/circleci/project/github/PokeAPI/pokeapi/master.svg)](https://circleci.com/gh/PokeAPI/pokeapi) [![License](https://img.shields.io/github/license/PokeAPI/pokeapi.svg)](https://github.com/PokeAPI/pokeapi/blob/master/LICENSE.rst)
2014-12-04 11:11:46 +00:00
2019-01-04 14:37:59 +00:00
[![Backers on Open Collective](https://opencollective.com/pokeapi/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/pokeapi/sponsors/badge.svg)](#sponsors)
2014-12-04 11:11:46 +00:00
2019-02-18 02:34:58 +00:00
A RESTful API for Pokémon - [pokeapi.co](http://pokeapi.co)
2016-08-25 13:22:18 +00:00
## Fair use policy
PokéAPI is open and free to use. However, we will ban IP addresses that abuse this privilege. This API is used primarily for educational purposes, and we do not want people inhibiting the education of others. See the fair use guide on the docs for more information. Moreover, we strongly suggest to cache request made, see the [Wrapper section](#official-wrappers) below.
## Join Us On Slack!
2019-01-04 14:37:59 +00:00
Have a question or just want to discuss new ideas and improvements? Hit us up on slack. Consider talking with us here before creating new issue.
2019-01-04 14:37:59 +00:00
This way we can keep issues here a bit more organized and helpful in the long run. Be excellent to each other :smile:
[Sign up easily](https://pokeapi-slack-invite.herokuapp.com/)!
2019-01-04 14:37:59 +00:00
Once you've signed up visit [PokéAPI on Slack](https://pokeapi.slack.com)
2016-04-26 08:59:39 +00:00
## Donations
Help to keep PokéAPI running! If you're using PokéAPI as a teaching resource or for a project, consider sending us a $10 donation to help keep the server up. We get over 2 million requests a month and it's quite costly!
2019-01-04 14:37:59 +00:00
Thank you to all our backers! [Become a backer](https://opencollective.com/pokeapi#backer)
<a href="https://opencollective.com/pokeapi#backers" target="_blank"><img src="https://opencollective.com/pokeapi/backers.svg?width=890"></a>
## Sponsors
Ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/pokeapi#sponsor).
<a href="https://opencollective.com/pokeapi/sponsor/0/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/1/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/2/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/3/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/4/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/5/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/6/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/7/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/8/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/pokeapi/sponsor/9/website" target="_blank"><img src="https://opencollective.com/pokeapi/sponsor/9/avatar.svg"></a>
## Official Wrappers
* Node server-side [PokeAPI/pokedex-promise-v2](https://github.com/PokeAPI/pokedex-promise-v2) | _Auto caching_
* Browser client-side [PokeAPI/pokeapi-js-wrapper](https://github.com/PokeAPI/pokeapi-js-wrapper) | _Auto caching_
* Java/Kotlin [PokeAPI/pokekotlin](https://github.com/PokeAPI/pokekotlin)
2019-01-04 14:37:59 +00:00
* Python 3 [GregHilmes/pokebase](https://github.com/GregHilmes/pokebase) | _Auto caching_
* Python 2/3 [PokeAPI/pokepy](https://github.com/PokeAPI/pokepy) | _Auto caching_
* PHP [lmerotta/phpokeapi](https://github.com/lmerotta/phpokeapi) | _Auto caching, lazy-loading_
* Ruby [rdavid1099/poke-api-v2](https://github.com/rdavid1099/poke-api-v2)
2019-05-09 02:07:26 +00:00
* .Net Standard [mtrdp642/PokeApiNet](https://github.com/mtrdp642/PokeApiNet) | _Auto caching_
2019-06-24 05:33:09 +00:00
* Go [mtslzr/pokeapi-go](https://github.com/mtslzr/pokeapi-go) | _Auto caching_
2014-12-04 11:11:46 +00:00
## Setup [![pyVersion37](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/download/releases/3.7/)
2014-12-04 11:11:46 +00:00
2014-12-04 12:11:57 +00:00
- Download this source code into a working directory.
2014-12-04 11:11:46 +00:00
2014-12-04 12:11:57 +00:00
- Install the requirements using pip:
2019-01-04 14:37:59 +00:00
```sh
make install
2014-12-04 12:11:57 +00:00
```
2019-01-04 14:37:59 +00:00
2014-12-04 11:11:46 +00:00
This will install all the required packages and libraries for using PokeAPI
2014-12-04 12:11:57 +00:00
- Set up the local developer environment using the following command:
2019-01-04 14:37:59 +00:00
```sh
make setup
2014-12-04 12:11:57 +00:00
```
2019-01-04 14:37:59 +00:00
- Run the server using the following command:
```sh
make serve
2014-12-04 12:11:57 +00:00
```
2019-01-04 14:37:59 +00:00
2014-12-04 11:11:46 +00:00
Visit localhost:8000 to see the running website!
2014-12-04 12:11:57 +00:00
If you ever need to wipe the database use this command:
2019-01-04 14:37:59 +00:00
```sh
make wipe_db
2014-12-04 12:11:57 +00:00
```
2014-12-05 12:31:49 +00:00
2018-10-18 18:14:54 +00:00
## Database setup
Start Django shell
2019-01-04 14:37:59 +00:00
```sh
python manage.py shell --settings=config.local
```
2018-09-08 22:42:24 +00:00
Run the build script with
2019-01-04 14:37:59 +00:00
```py
from data.v2.build import build_all
build_all()
```
2019-01-04 14:37:59 +00:00
2018-09-08 22:42:24 +00:00
Each time the build script is run, it will iterate over each table in the database, wipe it, and rewrite each row using the data found in data/v2/csv.
In informal tests on a Windows PC with a SSD and a 2.50 GHz processor, building against a PostgresQL database took approximately 6 minutes, and building against a SQLite database took about 7.5 minutes or longer, with some varying results.
The option to build individual portions of the database was removed in order to increase performance of the build script.
2015-12-07 20:17:33 +00:00
2019-01-04 14:37:59 +00:00
## Docker Compose
2019-01-04 14:37:59 +00:00
There is also a multi-container setup, managed by [Docker Compose](https://docs.docker.com/compose/). This setup allow you to deploy a production-like environment, with separate containers for each services.
2019-01-04 14:37:59 +00:00
Start the process using
2019-01-04 14:37:59 +00:00
```sh
docker-compose up --build
```
2019-01-04 14:37:59 +00:00
You can specify the `-d` switch to start in detached mode.
This will bind port 80 and 443. Unfortunately, unlike the `docker` command, there is no command line arguments to specify ports. If you want to change them, edit the `docker-compose.yml` file.
After that, start the migration process
```sh
docker-compose exec app python manage.py migrate --settings=config.docker-compose
```
2019-01-04 14:37:59 +00:00
And then, import the data using the shell
```sh
docker-compose exec app python manage.py shell --settings=config.docker-compose
```
2019-01-04 14:37:59 +00:00
Then use the `build_all()` method in the shell to populate the database.
2019-01-04 14:37:59 +00:00
```py
from data.v2.build import build_all
build_all()
```
2019-01-04 14:37:59 +00:00
Browse [localhost/api/v2/](http://localhost/api/v2/) or [localhost/api/v2/pokemon/bulbasaur/](http://localhost/api/v2/pokemon/bulbasaur/)
2019-01-04 14:37:59 +00:00
For the moment, this setup doesn't allow you to use the `scale` command.
2019-01-04 14:37:59 +00:00
## Docker (obsolete)
2019-01-04 14:37:59 +00:00
The application can be built and run as a Docker container for easy deployments
2019-01-04 14:37:59 +00:00
From the root directory of the cloned repo
2019-01-04 14:37:59 +00:00
```sh
docker build -t pokeapi .
```
2019-01-04 14:37:59 +00:00
Run the container on host port 8000
2019-01-04 14:37:59 +00:00
```sh
docker run -d -p 8000:8000 pokeapi
```
2014-12-05 12:31:49 +00:00
## Contributing
This project exists thanks to all the people who contribute. [[Contribute]](https://github.com/PokeAPI/pokeapi/blob/master/CONTRIBUTING.md).
<a href="graphs/contributors"><img src="https://opencollective.com/pokeapi/contributors.svg?width=890" /></a>
2014-12-05 12:31:49 +00:00
All contributions are welcome: bug fixes, data contributions, recommendations.
2016-06-02 08:42:48 +00:00
Please see the [issues on GitHub](https://github.com/PokeAPI/pokeapi/issues) before you submit a pull request or raise an issue, someone else might have beat you to it.
2014-12-05 12:31:49 +00:00
To contribute to this repository:
- [Fork the project to your own GitHub profile](https://help.github.com/articles/fork-a-repo/)
- Download the project using git clone:
2019-01-04 14:37:59 +00:00
```sh
git clone git@github.com:<YOUR_USERNAME>/pokeapi.git
```
2014-12-05 12:31:49 +00:00
- Create a new branch with a descriptive name:
2019-01-04 14:37:59 +00:00
```sh
git checkout -b my_new_branch
```
- Write some code, fix something, and add a test to prove that it works. *No pull request will be accepted without tests passing, or without new tests if new features are added.*
2014-12-05 12:31:49 +00:00
- Commit your code and push it to GitHub
- [Open a new pull request](https://help.github.com/articles/creating-a-pull-request/) and describe the changes you have made.
- We'll accept your changes after review.
Simple!
2019-01-04 14:37:59 +00:00
## DEPRECATION
As of October 2018, the v1 API has been removed from PokéAPI. For more information, see [pokeapi.co/docs/v1.html](https://pokeapi.co/docs/v1.html).