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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Grow production choice place system. News responsibility at brother concern magazine.\nAdmit at child. Identify firm church.\nFederal second point. Ask leader apply behavior matter.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Maybe feeling so sign instead former. Study right determine eat former.',
	#     u'Feeling science inside law. Manage reach machine memory participant property we Mrs. Ago choose order.',
	#     u'Book during should life although. Us reduce such because audience size half. Head remember since around board.']

	fake.words(nb=3, ext_word_list=None)
	# [u'analysis', u'go', u'fact']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Interview writer resource federal television.',
	#     u'Only computer month reduce official public help.',
	#     u'Use morning smile.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Seek admit store science thousand theory learn. Kid case husband air still standard.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Scene finally she guess nor local entire.'
