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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Finish ten sense often memory manage herself water.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Take figure remember bit consumer investment easy. Sing seven fill allow reality score. Challenge step build realize poor. Phone recent affect military election situation middle anything.',
	#     u'Guy voice various interview behavior meet. National hand tax rock.',
	#     u'Factor cold society hope behind. Pay civil product.']

	fake.words(nb=3, ext_word_list=None)
	# [u'issue', u'house', u'from']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Carry hold carry so his create.',
	#     u'Local in to friend not occur.',
	#     u'Star set bill test need quality building represent.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Decision rate every true recent field late. Put west provide thank sport believe. Store stand nice thus on approach.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Despite paper important success beat arm.'
