sentenceslug

Generate random slugs using basic sentence structure


Keywords
random, slug, sentence
License
BSD-3-Clause
Install
pip install sentenceslug==1.1

Documentation

sentenceslug

a module to generate relatively easy to remember slugs

Installation

pip install sentenceslug

Usage

In [1]: from sentenceslug import *

In [2]: sentence_slug()
Out[2]: 'Improve_That_Last_Day'

In [3]: sentence_slug_digits()
Out[3]: 'Start_His_National_Town_377'

In [4]: simple_slug()
Out[4]: 'NationalCar'

In [5]: simple_slug_digits()
Out[5]: 'LegalSystem305'

In [6]: nsa_codeword()
Out[6]: 'POORUSE'

In [7]: make_slug(simple=True, digits=5, delimiter="-")
Out[7]: 'Short-Good-83933'