faker.providers.loremΒΆ

fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# 'Deal story blue make campaign mother four guess.'

fake.paragraphs(nb=3, ext_word_list=None)
# [   'During off almost fill development discussion pull. Group fast wall '
#     'green.',
#     'Company result marriage stock still PM. Yes anyone response western '
#     'lawyer share. Practice no artist last put true.',
#     'Our source key story pull rise others. Alone win prove appear company '
#     'fire. Follow side already so. Enjoy manager red.']

fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# 'Arrive herself risk.'

fake.sentences(nb=3, ext_word_list=None)
# [   'Behind customer leg run process customer.',
#     'Forward sell picture include child.',
#     'Give spend middle along.']

fake.text(max_nb_chars=200, ext_word_list=None)
# ('Clearly cost race we both.\n'
#  'Mean sound when case mention save. Business level senior total. Citizen '
#  'impact must work. Throw town hear music.\n'
#  'Yourself late foot man.')

fake.texts(nb_texts=3, max_nb_chars=200, ext_word_list=None)
# [   'Character cost seat live society network. Full try window degree.\n'
#     'Amount by perhaps particular compare actually open.\n'
#     'Base pressure through growth seven. Ball myself thank it.',
#     'Air nothing whatever energy agency ahead.\n'
#     'Choose turn for pay type finally. Yeah her believe fear others.\n'
#     'Guy indicate garden improve beautiful. Moment strategy film but laugh.',
#     'Lose decade not politics. Entire learn Republican writer law.\n'
#     'These attorney until. Husband which imagine almost wind everybody.']

fake.word(ext_word_list=None)
# 'live'

fake.words(nb=3, ext_word_list=None, unique=False)
# ['suggest', 'site', 'majority']