Generate random pokemon names.
- Free software: GPL license
The script is available on PyPI. To install with pip:
pip install pokemonNames
- TODO
>> from pokemonNames.pokemonNames import PokemonNames
>> p = PokemonNames()
>> p.get_random_name()
'Flareon'
>> p.get_name(4)
'Charmander'
>> p.append_to_list(['myNewPokemon1', 'myNewPokemon2'])
>> p.get_name(720)
'myNewPokemon1'
>> p.get_name(721)
'myNewPokemon2'
>> p.append_to_list(['anotherNewPokemon1', 'anotherNewPokemon2'], start=900)
>> p.get_name(900)
'anotherNewPokemon1'Let a file be newNames.txt with content
Pikasaur Charfairy Ponidog
Import the above list as:
...
>> p.append_to_list('newNames.txt')
>> p.get_name(722)
'Pikasaur'
...An indexed file:
... 1000 Flanyx 1005 Catmeow ...
Import indexed file as:
...
>> p.append_to_list('indexedFileName', hasIndex=True)
>> p.get_name(1000)
'Flanyx'
>> p.get_name(1005)
'Catmeow'Don't want pokemon names?
...
>> noPokemon = PokemonNames(False)
# Creates an empty listThis could be used to store and refer any name from files or from variables.
For detailed docs of the package use python's help utility.