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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Continue today loss brother rise office. Order great clearly almost learn guy myself. Under break morning watch current.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Behind give few up evening lay foot.',
	#     u'Democrat of course point economic. Notice information arrive college close. Physical call bit since human increase.',
	#     u'Parent civil above program. Friend that kind personal customer allow. Support fish ability use enjoy out.']

	fake.words(nb=3, ext_word_list=None)
	# [u'item', u'summer', u'accept']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Fear two body choice enough hair pull accept.',
	#     u'Rule nice finish difference.',
	#     u'Throw do why run there institution.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Card stock crime outside final play pull fire. According five project main. Also condition establish lot coach machine company.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Expert TV physical.'
