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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Television news rest story. Experience recent defense leave politics.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Send plan have. Crime group though record science fire almost. Different actually produce cut boy and for just.',
	#     u'Many fight night already. Yeah include truth democratic. State despite customer seat top garden cover.',
	#     u'Bit together condition market. Piece enough these ground respond market field. Company save hot.']

	fake.words(nb=3, ext_word_list=None)
	# [u'company', u'skill', u'build']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Sport tend consumer system month sense class.',
	#     u'Light only father perhaps thing form morning area.',
	#     u'Key near teacher local group process brother.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Challenge general easy night current. Summer born artist onto effect. Service probably again television fill hour. Together ahead probably present.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Church soldier our base local bill.'
