Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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"

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] num

Code name generator

positional arguments:
num

optional 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