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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Campaign marriage wind tonight choose organization. Affect gas war general. Table degree sea discussion himself wrong. Policy with general should population north event force.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Success deal argue site. Race father rule lead store give something against.',
	#     u'Girl study attention act study. Second season by our painting sit. Issue culture ok not left change know.',
	#     u'Red site explain structure.']

	fake.words(nb=3, ext_word_list=None)
	# [u'candidate', u'opportunity', u'debate']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Drop gun message receive if school.',
	#     u'Past fill person like notice three.',
	#     u'Tree prove how what wait thus on.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Exactly single opportunity see court generation meeting. Practice first sport become. Usually maintain chance stuff.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Everyone mind movie stuff section teach cut new.'
