Christian Garza

Results 36 comments of Christian Garza

Oh yeah. Looks like the Veekun fork has had shapes since at least [this commit](https://github.com/PokeAPI/pokedex/pull/4/commits/803245704bac3caa8432b542c671381f4949a109#diff-6d1db73917f3e6ae5df1c798482ce423e1319480cb7c5dfc63a96cdffe721c96).

Unown is not the only pokemon that has forms without a unique pokemon id. If you look at the `pokemon_id` column in the [pokemon_forms.csv](https://github.com/PokeAPI/pokeapi/blob/master/data/v2/csv/pokemon_forms.csv) you can see there quite a...

@christopher-caldwell That endpoint you have has a `varieties` property that has an endpoint for rapid strike, is that what you want? E.x. [urshifu-rapid-strike](https://pokeapi.co/api/v2/pokemon/10183/)

I decided to try and practice some python and attempt to make the async wrapper. I made a branch [in my fork here](https://github.com/C-Garza/pokebase/tree/async-branch). I didn't change any original code, so...

Yeah I quickly realized that I would basically have to keep separate async versions of the code, but kept them in the same files for now. So @Kronopt, would you...

I'm just glancing at this but the issue could be that all those pokemon in the api have a full name with a dash (`-`) because they have forms. For...

You are calling pokemon 1 and then accessing the list of moves on it, like shown [in this link](https://pokeapi.co/api/v2/pokemon/bulbasaur). You can, for example, get a list of their names by...

The pokebase wrapper does support root endpoints from what I can see. If you use something like: ``` poke_list = pb.pokemon("pokemon") print(poke_list.results) print(poke_list.results[0].url) ###For bulbasaur url ``` then you can...

Could you not do something like this?: ```js {/* array of JSX items */} ```

Was this issue resolved in #745 @Naramsim?