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

https://github.com/jvamvas/crazy_tiger

Generate harmless random nicknames
https://github.com/jvamvas/crazy_tiger

kahoot username username-generator

Last synced: 7 months ago
JSON representation

Generate harmless random nicknames

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.com/jvamvas/crazy_tiger.svg?token=WWZSiXG1KwDSsmm3ZMm5&branch=master)](https://travis-ci.com/jvamvas/crazy_tiger)

Generate harmless random nicknames, such as CrazyTiger or MajesticCat

Other Examples:

```
FabulousHamster
YellowDolphin
SpaceLlama
StellarLemur
TropicalWombat
```

## Installation

`pip install crazy_tiger`

## Usage

```pycon
>>> import crazy_tiger

>>> crazy_tiger.generate()
'AdorableEagle'

>>> crazy_tiger.generate(case="snake")
'adorable_eagle'
```

## Credits
This project is inspired by the learning platform _Kahoot!_ and its _Friendly Nickname Generator_, which helps to avoid inappropriate nicknames in _Kahoot!_ games.

The word lists used in this project can be accessed [here](https://github.com/jvamvas/crazy_tiger/blob/master/src/crazy_tiger/words.py). All credit for the idea and for compiling appropriate words goes to the _Kahoot!_ team.