Update README.md

This commit is contained in:
Andros Fenollosa 2018-04-24 16:02:00 +02:00 committed by GitHub
parent a38d91031a
commit 7dcb08c5db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,85 @@
# API POSTAL CODE WALLAVISO # API para Códigos postales de España
## URL Sencilla API para obtener información de los códigos postales de España. Obteniendo información como:
https://hidden-sierra-35586.herokuapp.com - Código postal.
- Población.
- Latitud.
- Longitud.
## REQUESTS ## Llamadas
### Get for index ### Obtener todos los datos de un código postal
https://hidden-sierra-35586.herokuapp.com/api/v1/index/{integer}
### Get for postal code ``` bash
https://hidden-sierra-35586.herokuapp.com/api/v1/postal_code/{integer} https://hidden-sierra-35586.herokuapp.com/api/v1/postal_code/{numero}
```
## INSTALL Ejemplo
``` bash
https://hidden-sierra-35586.herokuapp.com/api/v1/postal_code/46017
```
``` json
[
{
"index": 461021,
"postal_code": 46017,
"poblacion": "Santa Margarida de Montbui",
"lat": 41.55659597,
"lng": 1.60489809
},
{
"index": 461022,
"postal_code": 46017,
"poblacion": "Pampliega",
"lat": 42.20619881,
"lng": -3.98797885
},
{
"index": 461023,
"postal_code": 46017,
"poblacion": "Villanueva de Guadamejud",
"lat": 40.22470982,
"lng": -2.50703229
},
...
]
```
### Obtener por index (indice)
``` bash
https://hidden-sierra-35586.herokuapp.com/api/v1/index/{indice}
```
Ejemplo
``` bash
https://hidden-sierra-35586.herokuapp.com/api/v1/index/461021
```
``` json
[
{
"index": 461021,
"postal_code": 46017,
"poblacion": "Santa Margarida de Montbui",
"lat": 41.55659597,
"lng": 1.60489809
}
]
```
## Instalación
```bash ```bash
pipenv install pipenv install
pipenv shell pipenv shell
``` ```
## RUN Después solo debes arrancarlo.
```bash ```bash
python3 app.py python3 app.py