Usage

To install Lorem Text, run this command in your terminal:

pip install lorem_text

To use Lorem Text in a project:

from lorem_text import lorem

For randomly generated sentence of lorem ipsum text where the first word is capitalized, and the sentence ends in either a period or question mark:

lorem.sentence()

Generate a single paragraph:

lorem.paragraph()

Generate multiple paragraphs of lorem ipsum text each paragraph’s consists of 2 to 4 sentences:

paragraph_length = 5
lorem.paragraphs(paragraph_length)

Generate random lorem ipsum words seperated with single space:

words = 10
lorem.words(words)

Command Line Interface

For randomly generated paragraph of lorem ipsum text:

lorem_text

Lorem ipsum sentence:

lorem_text --s

Lorem ipsum words:

lorem_text --words=50