
``faker.providers.lorem``
-------------------------

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Seem final research world pull. Participant difficult because alone second bed. Professor standard factor stock listen Mr between.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Fire four for ask. Opportunity sit role cut would offer in. Trial voice language line skill action would.',
	#     u'Then sometimes bar production. Fight stay base north before.',
	#     u'Leader final daughter phone federal check car. Store wonder star when rule. Between party guess the huge seven determine.']

	fake.words(nb=3, ext_word_list=None)
	# [u'serve', u'population', u'ahead']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Cold strong about capital indeed cold.',
	#     u'Soon officer with similar product anyone lawyer.',
	#     u'Analysis wife professor those best benefit two prove.']

	fake.word(ext_word_list=None)
	# u'degree'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Expect standard machine job research. Point defense cost price.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Just music practice help allow.'
