pokebase icon indicating copy to clipboard operation
pokebase copied to clipboard

List of moves doesn't show correctly

Open Larwive opened this issue 4 years ago • 1 comments

I want to get all the moves Bulbasaur can learn and the associated learning method but I only get those lines in the video.

I'm using Python 3.9.0 on MacOS Big Sur 11.1

https://user-images.githubusercontent.com/50395278/103458345-51f43200-4d07-11eb-8a08-4baa3c20bf9c.mov

Larwive avatar Jan 02 '21 13:01 Larwive

You are calling pokemon 1 and then accessing the list of moves on it, like shown in this link. You can, for example, get a list of their names by looping through and accessing move like this:

for x in list:
    print(x.move)

C-Garza avatar Jan 03 '21 08:01 C-Garza