コード例 #1
0
ファイル: pokemon.py プロジェクト: ammeux/webScrapper
class Pokemon(BaseObject):
    pokedex_id = IntField('Pokedex id of the Pokemon')
    name = StringField('Name of the Pokemon')
    types = Field('Types of the Pokemon')
コード例 #2
0
ファイル: pokeOptions.py プロジェクト: ammeux/webScrapper
class PokeOptions(BaseObject):
    abilityOptions = Field('These are the Pokemon ability options', dict)
    generationsOptions = Field('These are the Pokemon generations options', dict)
    tierOptions = Field('These are the Pokemon tier options', dict)