Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit ebaf219

Browse files
committed
README ESP-MX.md created
1 parent dbb317b commit ebaf219

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

README ESP-MX.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Studio Ghibli API
2+
3+
La [Studio Ghibli API](https://ghibliapi.herokuapp.com) cataloga las personas, lugares y cosas que se encuentran en los mundos de Ghibli. Fue creado para ayudar a los usuarios a descubrir recursos, consumirlos a través de solicitudes HTTP e interactuar con ellos de cualquier manera que tenga sentido. La navegación se puede encontrar en la barra lateral izquierda y la barra lateral derecha muestra ejemplos de objetos devueltos para llamadas exitosas.
4+
5+
## Endpoints
6+
7+
- Films
8+
- People
9+
- Locations
10+
- Species
11+
- Vehicles
12+
13+
## Comienzo
14+
Las solicitudes se pueden realizar con curl u otras bibliotecas auxiliares siguiendo las llamadas REST regulares. Se proporcionan ejemplos para Ruby y Python con un caso de uso en Haskell. Por ejemplo, aquí se muestra cómo OBTENER el recurso para la película My Neighbor Tororo:
15+
16+
`curl https://ghibliapi.herokuapp.com/films/58611129-2dbc-4a81-a72f-77ddfc1b1b49`
17+
18+
Al llamar a este recurso responderá con el siguiente objeto:
19+
20+
```json
21+
{
22+
"id": "58611129-2dbc-4a81-a72f-77ddfc1b1b49",
23+
"title": "My Neighbor Totoro",
24+
"description": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.",
25+
"director": "Hayao Miyazaki",
26+
"producer": "Hayao Miyazaki",
27+
"release_date": "1988",
28+
"rt_score": "93",
29+
...
30+
}
31+
```
32+
33+
## Bibliotecas auxiliares
34+
### Elixir
35+
- [ghibli](https://github.com/sotojuan/ghibli) por [Juan Soto](https://github.com/sotojuan)
36+
37+
### Go
38+
- [totoro](https://github.com/Rchristiani/totoro) por [Ryan Christiani](https://github.com/Rchristiani)
39+
40+
### GraphQL
41+
- [ghibliQL](https://github.com/kisscool-fr/ghibliql) por [Sebastien](https://github.com/kisscool-fr)
42+
43+
### R
44+
- [ghibliapi](https://github.com/onertipaday/ghibliapi) por [Paolo](https://github.com/onertipaday)
45+
46+
### Python2 and Python3
47+
- [python_studio_ghibli_api_sdk](https://github.com/Incognito/python_studio_ghibli_api_sdk) por [Incognito](https://github.com/Incognito)
48+
49+
50+
## Examples
51+
### Swift (iOS)
52+
- https://github.com/kxvn-lx/Ghibliii
53+
54+
### Android
55+
- https://github.com/txemasv/ghibli-films
56+
57+
### Haskell
58+
- https://github.com/janaipakos/ghibliapi-example
59+
60+
### Datascript and Clojure
61+
- https://cjohansen.no/a-unified-specification/
62+
63+
### JavaScript
64+
- https://github.com/mazipan/ghibli-fans
65+
- https://github.com/taniarascia/sandbox/tree/master/ghibli
66+
67+
## Resources
68+
Esta API fue construida usando [JSON Server](https://github.com/typicode/json-server), [ReDoc](https://github.com/Rebilly/ReDoc), y mostrada a través de [swapi.co](https://github.com/phalt/swapi)

0 commit comments

Comments
 (0)