Generate pokemon names.
Project description
Generate random pokemon names.
Free software: GPL license
Installation
The script is available on PyPI. To install with pip:
pip install pokemonNames
Features
TODO
Usage
>> 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'
Docs
For detailed docs of the package use python’s help utility.
History
0.1.0 (2014-09-11)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pokemonNames-0.1.0.tar.gz
(11.0 kB
view details)
Built Distribution
File details
Details for the file pokemonNames-0.1.0.tar.gz
.
File metadata
- Download URL: pokemonNames-0.1.0.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c3a6810a5c65ef148adf41aad731fa9f3ad7d61c5f8deea0817b7230268efc8 |
|
MD5 | 62e6f9de1ea4dbc32312a16070b12407 |
|
BLAKE2b-256 | c8daeb87989a91913394ac54971f65a0c0071a1d33683beff54285d26e1b8eed |
File details
Details for the file pokemonNames-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pokemonNames-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9e28d2622f3cd4f2f87ec8697f141b493591dbb1e703dccb1f415ae54ab6dc6 |
|
MD5 | 0037c69e95fca9fd63f7e2ac0bcb2b7f |
|
BLAKE2b-256 | 47c54fd9a310487583d57b7c24f6d963777041a4e427ba3f262d46bf04b17cff |