Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mariocesar/codenamegenerator
A Name generator of the form "Adjetive Noun"
https://github.com/mariocesar/codenamegenerator
namegenerator names pypi-package python3
Last synced: about 2 months ago
JSON representation
A Name generator of the form "Adjetive Noun"
- Host: GitHub
- URL: https://github.com/mariocesar/codenamegenerator
- Owner: mariocesar
- License: mit
- Created: 2015-03-21T01:58:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-12-22T02:03:51.000Z (about 4 years ago)
- Last Synced: 2024-10-30T02:56:05.571Z (2 months ago)
- Topics: namegenerator, names, pypi-package, python3
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# namegenerator
A Name generator of the form "Adjetive Noun"Test it by
```shell
$ python -m codenamegenerator 8
admiring ride
unruffled williams
compassionate franklin
frosty torvalds
youthful blackwell
distracted pike
nostalgic curran
stoic hopper$ python -m codenamegenerator --help
usage: codenamegenerator [-h] [-c] [-t] [-s] [--prefix PREFIX] [--suffix SUFFIX] numCode name generator
positional arguments:
numoptional arguments:
-h, --help show this help message and exit
-c, --capitalize
-t, --title
-s, --slugify
--prefix PREFIX Prefix dictionary
--suffix SUFFIX Suffix dictionary
```or
```python
from codenamegenerator import generate_codenames
print(generate_codenames())
```
## TODO:- [ ] Choice which collection of nouns and adjectives to use
- [x] Command line interface with options