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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Maintain strategy truth Congress task draw hotel.\nLight wind including himself continue rich. Mrs center whose off.\nLoss itself simply.\nClose off probably subject moment. Capital move during.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Approach suggest everyone. Teacher house western entire. Term sign admit job space beat coach with.',
	#     u'Now factor national may. Live PM open Republican. Newspaper produce section.',
	#     u'If pass then leader. Century back question her. Floor exactly officer seek special trip truth. Research you two than look interview young arrive.']

	fake.words(nb=3, ext_word_list=None)
	# [u'without', u'agreement', u'possible']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Trial hospital majority.',
	#     u'Use laugh dinner protect somebody.',
	#     u'Act know school.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Here few behind never interesting receive actually. Letter section so finally long organization.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Stop simply conference friend.'
