
Language et_EE
===============

``faker.providers.address``
---------------------------

::

	fake.longitude()
	# Decimal('-165.784539')

	fake.building_number()
	# u'77837'

	fake.street_address()
	# u'3813 Bondarenko Circle'

	fake.postalcode_plus4()
	# u'95885-2795'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'East Riina'

	fake.zipcode_plus4()
	# u'09214-6264'

	fake.state_abbr()
	# u'MS'

	fake.latitude()
	# Decimal('42.540681')

	fake.street_suffix()
	# u'Mills'

	fake.city_suffix()
	# u'side'

	fake.military_dpo()
	# u'Unit 4621 Box 3524'

	fake.country_code(representation="alpha-2")
	# u'AL'

	fake.country()
	# u'Kuwait'

	fake.secondary_address()
	# u'Suite 612'

	fake.geo_coordinate(center=None, radius=0.001)
	# Decimal('-92.798749')

	fake.postalcode()
	# u'20350'

	fake.address()
	# u'29486 Mihkel Hills Apt. 164\nAntsborough, MS 94266-1188'

	fake.state()
	# u'North Dakota'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Frolov Mountains'

	fake.zipcode()
	# u'74329'

	fake.postcode()
	# u'92425-5575'

	fake.military_apo()
	# u'PSC 0026, Box 9953'

``faker.providers.automotive``
------------------------------

::

	fake.license_plate()
	# u'ZHX 197'

``faker.providers.bank``
------------------------

::

	fake.bban()
	# 'IRKT7237594779480'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB63GBMG6163171944298'

``faker.providers.barcode``
---------------------------

::

	fake.ean(length=13)
	# u'4166297329081'

	fake.ean13()
	# u'1756617001822'

	fake.ean8()
	# u'00030052'

``faker.providers.color``
-------------------------

::

	fake.rgb_css_color()
	# u'rgb(121,251,225)'

	fake.color_name()
	# u'SkyBlue'

	fake.rgb_color()
	# u'50,167,30'

	fake.safe_hex_color()
	# u'#eeaa00'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#6e319f'

``faker.providers.company``
---------------------------

::

	fake.company()
	# u'Anton, M\xfcrk and K\xf5iv'

	fake.company_suffix()
	# u'Group'

	fake.catch_phrase()
	# u'De-engineered empowering architecture'

	fake.bs()
	# u'integrate end-to-end ROI'

``faker.providers.credit_card``
-------------------------------

::

	fake.credit_card_security_code(card_type=None)
	# u'938'

	fake.credit_card_provider(card_type=None)
	# u'Maestro'

	fake.credit_card_full(card_type=None)
	# u'Diners Club / Carte Blanche\nJelena Vaher\n30090645349007 05/21\nCVC: 675\n'

	fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
	# '11/28'

	fake.credit_card_number(card_type=None)
	# u'3564072400146453'

``faker.providers.currency``
----------------------------

::

	fake.cryptocurrency_code()
	# 'XMR'

	fake.currency_code()
	# 'ZWD'

	fake.currency_name()
	# 'Guinean franc'

	fake.cryptocurrency_name()
	# 'Ethereum Classic'

	fake.cryptocurrency()
	# ('FTH', 'Feathercoin')

	fake.currency()
	# ('MAD', 'Moroccan dirham')

``faker.providers.date_time``
-----------------------------

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 9, 14, 33, 33)

	fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
	# <generator object time_series at 0x7fff8987fcd0>

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2019, 5, 15)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2009, 4, 15, 20, 19, 32)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 12, 14)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 3, 19, 17, 12)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2019, 4, 30)

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 5, 0, 38, 4)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2018, 12, 25)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2011, 3, 29, 20, 52, 37)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1993-08-07'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2019, 5, 15, 4, 20, 46)

	fake.date_object(end_datetime=None)
	# datetime.date(1989, 2, 20)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 2, 1)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1998-09-05T05:39:33'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2019, 5, 23)

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2016, 1, 19)

	fake.month()
	# '09'

	fake.year()
	# '2017'

	fake.day_of_month()
	# '24'

	fake.unix_time(end_datetime=None, start_datetime=None)
	# 886410555

	fake.timezone()
	# u'Africa/Mbabane'

	fake.century()
	# u'VI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1981, 3, 6)

	fake.time_object(end_datetime=None)
	# datetime.time(7, 15, 26)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 1, 16, 18, 25, 19)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1999, 5, 6, 11, 0, 8)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '02:23:15'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2019, 5, 13)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 9, 2, 37, 38)

	fake.month_name()
	# 'July'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(330, 6, 2, 5, 19, 27)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(10033, 7352)

``faker.providers.file``
------------------------

::

	fake.unix_device(prefix=None)
	# u'/dev/sdm'

	fake.mime_type(category=None)
	# u'application/rdf+xml'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/eius/voluptate.txt'

	fake.unix_partition(prefix=None)
	# u'/dev/sdr6'

	fake.file_name(category=None, extension=None)
	# u'dolor.bmp'

	fake.file_extension(category=None)
	# u'webm'

``faker.providers.internet``
----------------------------

::

	fake.ascii_free_email(*args, **kwargs)
	# 'timofejevtatjana@gmail.com'

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=782x731&w=782&h=731'

	fake.tld()
	# u'net'

	fake.email(*args, **kwargs)
	# u'afedorov@piho.com'

	fake.url(schemes=None)
	# u'http://www.nikitin-karu.org/'

	fake.ipv4_private(network=False, address_class=None)
	# '10.131.27.136'

	fake.user_name(*args, **kwargs)
	# u'vladimir66'

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'index'

	fake.free_email_domain(*args, **kwargs)
	# u'hotmail.com'

	fake.safe_email(*args, **kwargs)
	# u'davodovsergei@example.com'

	fake.ascii_email(*args, **kwargs)
	# 'olegkutsar@salu.com'

	fake.ipv4_network_class()
	# u'a'

	fake.ipv4_public(network=False, address_class=None)
	# '151.69.53.139'

	fake.ascii_company_email(*args, **kwargs)
	# 'valeri97@luts.net'

	fake.domain_name(*args, **kwargs)
	# u'martinson-soon.com'

	fake.ipv4(network=False, address_class=None, private=None)
	# '110.136.116.135'

	fake.domain_word(*args, **kwargs)
	# u'kostin-rosenberg'

	fake.slug(*args, **kwargs)
	# u'aut-labore-a-alias'

	fake.uri_path(deep=None)
	# u'search'

	fake.company_email(*args, **kwargs)
	# u'ftuul@nomme-joe.com'

	fake.uri()
	# u'http://kivi-novikov.com/login/'

	fake.ipv6(network=False)
	# 'a089:8355:d9b9:b4ca:f244:5d3:c514:48a2'

	fake.free_email(*args, **kwargs)
	# u'marinatimofejev@gmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'jevgenigerassimov@example.com'

	fake.mac_address()
	# u'2d:e6:97:63:22:28'

``faker.providers.isbn``
------------------------

::

	fake.isbn10(separator="-")
	# u'0-12-940483-7'

	fake.isbn13(separator="-")
	# u'978-0-7024-3406-8'

``faker.providers.job``
-----------------------

::

	fake.job()
	# 'Sub'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Quisquam unde consequuntur aut. Reiciendis velit reiciendis nostrum reprehenderit aperiam consequuntur. Laboriosam aspernatur dolor eius. Suscipit error numquam unde praesentium provident.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Fuga officiis odit. Excepturi nam necessitatibus assumenda porro. Culpa ab a iure praesentium earum nemo facilis.',
	#     u'Sunt fuga odit unde. Illo itaque impedit natus incidunt. Vel facere minus voluptas necessitatibus. Saepe eligendi soluta dignissimos doloremque ab atque.',
	#     u'Quis laboriosam praesentium non.']

	fake.words(nb=3, ext_word_list=None)
	# [u'exercitationem', u'adipisci', u'aut']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Dicta odit provident voluptatem ea.',
	#     u'Autem explicabo architecto quisquam ut officiis odit deserunt.',
	#     u'Corporis occaecati perspiciatis.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Consectetur illo ex saepe. Non qui itaque earum deserunt.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Tenetur modi ipsam quae recusandae alias.'

``faker.providers.misc``
------------------------

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'fm%2Bamqcr'

	fake.locale()
	# u'fa_IR'

	fake.binary(length=1048576)
	# bytearray(b'\xb9\x9clU\x8czK\xb5\xc7\xd3\x16\x0b\'g\xea\x1c-\xf2Z{\x88\x8e\xbe\rfc\x93\x9bb\x88^\x84\xe0\xa5\xba\x9bY\x9d\x1f\xa0\x03\x9d\xa7`\xb9\xd8.Jg\xa8n\xb3j\x0b\xf2\xc2\x9ea\xbe\x130H\x90\xd3L0\x1ft\xdd\xef\x06\xc1\xaf\xba\xb5\x01!\xe9&\x84a\xd6\xfeZR\xfc\x0e\xa3\xd9\x9eOI\xcf\xfa\x12\xb5H\xd3S\x91\x1b\xa9\xca\'\xe4>\xc8&\x1d\x84C\x83\xd2m\x17\x9b-\xb5!p3\x06^*\xc2\xf1\xafy\xf6\'.\xb29\x03_b[\xcbUR\x020\x1f\xccj\xb1E\x14\xf0\x82i\xe93.\x8e\xb8\xbc\xc5\x1b\xfd\r`A7fh\xcf\xf2\xe1\xac\x0b\n\xc6\x8a\xd9\xe7\xe1\x93A\x04\x98\x8c\to\xf4tA\xc4\xd4\xef+\x04\xc0\x18\x05\x12er\xc3W\xec\xf6C\x03\xe9B\xf1\x90`\xb2\xbb\xee\xb8`\xdc\xbd\\\x04\xf6\x91!\x1fUs^-\x96\xeb\xe2\xa7L\xd93\xa7#\x13\xaf\xce\x8c}\x06X\xfb\xdb\xb8vo\x1dlw\x9b\xc9&\xb7c\xe9s\x8d\x01\xe6"v\xc8\xdfj\\\x14\x00BN\xd9\xfd\xd8\x01\x19\x91g6\x10\xad\x1e\x7f\x0e\xaf\x8cy]\xfb*\xab\xcaP\xd6\x8d\xd6\xc1\xcb\x1a\xcd\x8a|]\xc4\x94Q+X(\x8eKX\xcc\xeb[|\x9b\x96VY\x12\x08?\x7f\xe8WKF\x9d\x166\x81I\xa2\xe1+&D\x8a\xda\x9c<$\xaa\xbe\x8cZ5*\xdf\xf19\x1fu\x1c\xb3\x84\x9f\xc2\xf2\xa9\n\xbb\xd6\x96\\\xd2\xf2\x90y\x85\x88hC\x8b. \xc4y\xace\xee\x85\xddW\xdaV\xd3\x1c\xa4\xf5\x98]\xc4\xfb\xdcK\xd8`\xd7R*ez\xe0\xb5\xca\xf7\x03\xbb\x19`\xf3Hx7\xd8\xab\x8f|\xe1|\x08\xa1\x04 E\r\x9c\x18\xe6\x1a\xf0\xc1U}v\xe1X\xc3x<\xd4k\x9dx\x95)\xe4\xb8X\x1d\xd7\xda\xeb\xb6\xbd\xa4\xa5\xc5\x8dq]O\xd2\xfd\x8b\x90\x92=\xd7v\x02\xdf\x0e\'3\xdev\x88u7r\x88\x8fZ\xa4io\xfa\x89\x17\xbc\xc4\x94t01\xa2\xd4\xc7\xe7s\x1c\xb9\xcbl\xb8W\xb5\xae\xab\xfd\xac\x9ac4\x96x\x95\xa9\x18\xf5\xd4\xb8\xa3\xb0?\xc8\xef\xe8\xfdc\xe8Y_\xac\x9d\xeb\x84\xba\xd9\x03;\x90\x8d\xf1.\xda\x08\xc4\x958\xdc9B@\x0cV\xc7X\x86\xd9k\xc0{\xc2\xeb\xf8\x1b\xb3\xeb\x84\x9b\x98\x10\x93\xf4\xe3Z\xf3\x968\xf3N\xe6|\xb8\xcfB\x1d\x18rQ2&\xb2\x9a\xeb\x8d\xcb\x96"\x9a\xe7\x158\xce\xb38\x16\x81\xa1_\xd7\xd5rB\xe2xv\x1b\x8c\xc4\x9ax\xbc\xe1G\xea\x85,\x03\x0b\x8b\x9b\xcf\x8e\xe3\xe8\xa5\xf95s\xff\x86\x01\xd5\x9f}\xbad\np4\xf6S\x1a=\xe8\x92\xe4.@\xc9e\x02~$\xb25\xd2\x0f\xfb,c\xf9\x90\xa3=r\x0e\x10\xa5d\x05\xfad\xedx\xc3j=}\xe1\xcak\x81\x8b\x06B\xee\xbe\x01\xf2\xd0\xd6\x1b\xefm\xc8\xe0\x80t\xe2\xe3\x12W\xc0\x139\n\xb9^\n\x11b\x06\x10xL\x88h\x80\x85\xe2\xf7\x8eBP\xe4\x06\xf2\xaf\xdb\x8c\xe3D\xa9\xc7\xadT\x17\x90\xe5+\x08\x84"\x89f\xc1\x12\x18\xb0;`\xaf}u\xde\xcd\xb8\xdb\x13IV\xb1\xd1@"X)Ed\xfc\\\xc5S\xbe\x10\xfb\xe3$\xd0\xce)\xafEc\x92\x91KU\x05@\x8f\xce\xe5\x90\xbe\x85]t_0?\xffC\x86\x17\xad\xf3?T]\xc9\x1f\x9b#\x98\x14\xb2;n\x91D#\xddZ\xc4\xf9\t\xf8\x90V\xa6\xa1\x8aE\xc3\xf1\x7f\xb1\x80\xd0\xf6\xdc\x03\xa9\n\x0cM[\xc7m\xd4]\x81F\xe5\x12a\xd6\xf7f`\xe8\x9b\xf4\xd9\xb6YQ|\xc3\xf1?\x9c\xb2~\x85\xe1\xff~d\xf0.$\xb7\xbb].\xca\xb7\xb0\xf8\xbb4\x84\xa7x\xf5TA\xeaF3\x90\x86\x86M\x81\xc2\xd0\x9b\xa8;\x8b~\xa0\xf9\x96/K\x12$\xe10\x1e\'\xe3\xff\x13\xc1\xbf,\xa6\xde\x1c\x05\xb3\xb1AQ\xc9\xe7\xb3\x86}\x97g\n\x9a4\xbd\xab\xdf\xe2`y\x87\x0e\xa7:\xd1$3k\x04\xb3\x81`\xbe\xdf\xb5+\xfdEO\xc3\x0c\xe9\xf8\xe7S\x8c!\xd6\xf1\xd6g\n\xcc\xd9\xdc\xc6e{\x8dq\x16~\xe3\xd9=*\xc6\xec\x9e\xa6=\x17B]')

	fake.md5(raw_output=False)
	# 'ad50bb690602671ce8dd36568c602594'

	fake.sha1(raw_output=False)
	# '965a8d2b463ef393a3f5492e3bfd91c1ce9b3ec7'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '7c0b6bb431d5205bd4d2ae622ceebf25e7b8bfae673f5b18707a268b6b0260f9'

	fake.uuid4()
	# '142f7e6f-2970-21e8-654e-eed44f1b9bd2'

	fake.language_code()
	# u'lij'

	fake.boolean(chance_of_getting_true=50)
	# False

``faker.providers.person``
--------------------------

::

	fake.first_name_male_rus()
	# u'Juri'

	fake.prefix_male()
	# u'doktor'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Ivan Kostin'

	fake.first_name_rus()
	# u'Maria'

	fake.first_name()
	# u'Marko'

	fake.suffix_male()
	# u'PhD'

	fake.first_name_est()
	# u'Aleksander'

	fake.first_name_female()
	# u'Kristina'

	fake.first_name_male()
	# u'Aivar'

	fake.prefix_female()
	# u'pr'

	fake.name()
	# u'T\xf5nu Kolk'

	fake.last_name_rus()
	# u'Jefimov'

	fake.first_name_male_est()
	# u'Andrus'

	fake.suffix()
	# u'MSc'

	fake.prefix()
	# u'pr'

	fake.first_name_female_est()
	# u'Piret'

	fake.name_female()
	# u'Jekaterina Matvejev'

	fake.last_name_male()
	# u'Jakobson'

	fake.first_name_female_rus()
	# u'Aleksandra'

	fake.last_name_est()
	# u'J\xf5esaar'

	fake.last_name()
	# u'Kolk'

	fake.last_name_female()
	# u'J\xf5e'

``faker.providers.phone_number``
--------------------------------

::

	fake.phone_number()
	# u'959.085.6873'

	fake.msisdn()
	# '9172663754565'

``faker.providers.profile``
---------------------------

::

	fake.simple_profile(sex=None)
	# {   'address': u'0176 Mandel Course Apt. 140\nTuulland, MO 80433-5691',
	#     'birthdate': datetime.date(1966, 4, 20),
	#     'mail': u'jurileppik@yahoo.com',
	#     'name': u'Merike Gross',
	#     'sex': 'F',
	#     'username': u'gkoit'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'8065 Sarapuu Loop Suite 180\nJalakasborough, MS 06994',
	#     'birthdate': datetime.date(1968, 3, 14),
	#     'blood_group': 'AB+',
	#     'company': u'Aun LLC',
	#     'current_location': (Decimal('-8.3431155'), Decimal('-102.984009')),
	#     'job': 'Production assistant, television',
	#     'mail': u'fmeier@yahoo.com',
	#     'name': u'Marko Kivim\xe4e',
	#     'residence': u'PSC 5490, Box 9154\nAPO AP 84782',
	#     'sex': 'M',
	#     'ssn': u'60303019522',
	#     'username': u'olegmelnik',
	#     'website': [u'http://www.titov.com/']}

``faker.providers.python``
--------------------------

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'oyIJNUqDZADlgUdLCjor',
	#     u'http://www.lipp.net/index/',
	#     u'npnVCoNnJdPwTfYXUdNX',
	#     u'IHLSWnbdWhtESUBcHARe',
	#     datetime.datetime(1990, 3, 12, 11, 57, 19),
	#     u'http://poldma.com/']

	fake.pystr(min_chars=None, max_chars=20)
	# u'WsVBaMGJmZIcgBKoaKeZ'

	fake.pystruct(count=10, *value_types)
	# (   [   u'fFPoNFJPmUiwmAdxMFQV',
	#         u'http://www.kalda.biz/posts/main/search/',
	#         Decimal('32368.5663226'),
	#         u'EAtYPqFQRznIDQatpZwl',
	#         4859,
	#         4267,
	#         datetime.datetime(1999, 1, 15, 0, 24, 57),
	#         7905,
	#         9655,
	#         u'sUucASInjhXOSdhkpTwn'],
	#     {   u'accusamus': u'KxJofVAUIGPpAzGUIorz',
	#         u'animi': u'heinlinda@lang.com',
	#         u'atque': -80063234.8,
	#         u'culpa': u'yTmQRLOezVMCosMHPdJS',
	#         u'error': 4129,
	#         u'ipsa': 305,
	#         u'modi': u'ploomants@hotmail.com',
	#         u'nisi': datetime.datetime(2019, 5, 9, 6, 26, 5),
	#         u'sed': u'kadri92@gmail.com',
	#         u'sit': 56.2663007202},
	#     {   u'aliquid': {   0: u'QkTXcOBJWwaiTpxwYXNv',
	#                         1: [   datetime.datetime(1993, 10, 10, 20, 34, 39),
	#                                u'oqvORBlEWbXqjREawBUw',
	#                                9015],
	#                         2: {   0: u'FOXpJLIVFJyoQSASLYHK',
	#                                1: 6907,
	#                                2: [9323, u'jxHGkyqWvtkAjKPBskZN']}},
	#         u'animi': {   1: u'THqHRDzZpTBaLowlLBGS',
	#                       2: [   u'EYqbzzsasFtUSgdaRpye',
	#                              u'lmikk@murk-salumae.org',
	#                              u'TwvVGLwnEyDgSTeztGgR'],
	#                       3: {   1: u'okKXQVpuRizrAHTiXsTc',
	#                              2: u'cruus@muru-lill.com',
	#                              3: [Decimal('-8590432913.0'), 1676]}},
	#         u'eius': {   3: u'VLBJRdBKZDDNRjhcpQDe',
	#                      4: [   datetime.datetime(1982, 8, 31, 13, 21, 15),
	#                             -419539469.5,
	#                             u'qSdMbKfiFAJncCvdEmXJ'],
	#                      5: {   3: u'sGQRJlDBrwWHNoLjMeer',
	#                             4: u'gLhnlIhSnFwbJsHYPrHg',
	#                             5: [   u'http://mandel.com/terms.html',
	#                                    u'NuOyRRWlKkFVZsENUXYQ']}},
	#         u'iure': {   6: u'NTMunGqYLqmLgYcjduLw',
	#                      7: [8449039297.655, u'vRyUaoPwvMzNUQAQiUpJ', 1144],
	#                      8: {   6: 7571,
	#                             7: u'VzBerwWbSLnHanOTbIsf',
	#                             8: [u'ZbOWgYguKOlocLkDxvuW', 332]}},
	#         u'maiores': {   9: -1796.129,
	#                         10: [   u'kNvaowyzYYcKVsAzPDZY',
	#                                 u'ICsFFCaQVTQskspItGxL',
	#                                 Decimal('-7171420.35798')],
	#                         11: {   9: datetime.datetime(1984, 8, 10, 5, 0, 27),
	#                                 10: -533.37340735,
	#                                 11: [7635, 8349]}},
	#         u'minus': {   7: u'VDRfkeLPyxOAekvEJoHD',
	#                       8: [   Decimal('-9117.96203643'),
	#                              4045,
	#                              -417223046077.433],
	#                       9: {   7: u'LgXJvTccPfkbVWWzRMNK',
	#                              8: u'wqCRdSNhZimKQzbUZXDI',
	#                              9: [7053, u'ngorbunov@hotmail.com']}},
	#         u'provident': {   2: 1862,
	#                           3: [6303, -89.680548, u'sSiRrKEZlKNuqEzVmruo'],
	#                           4: {   2: u'gontsaroveve@hotmail.com',
	#                                  3: 5376,
	#                                  4: [1944, 840]}},
	#         u'sapiente': {   4: u'http://www.rohtla.com/',
	#                          5: [   datetime.datetime(1971, 7, 7, 14, 13, 6),
	#                                 1114,
	#                                 u'AAkbNLihBWFuExuskRQd'],
	#                          6: {   4: u'https://www.laine-kozlov.org/login.html',
	#                                 5: u'YQrAwNVrvrfeGrtnJpoF',
	#                                 6: [   Decimal('4.61928142986E+13'),
	#                                        u'tzbccLjFrbsWXloKwKSK']}},
	#         u'sed': {   8: 2278,
	#                     9: [   u'KAKKFZIPuafqixMQbWIU',
	#                            u'gVNkPDeLvcUEwpPVqtHJ',
	#                            Decimal('4340.10053143')],
	#                     10: {   8: Decimal('64328768.958'),
	#                             9: u'cLFFjXfnFzIAYnILKgbc',
	#                             10: [Decimal('881227315907'), 2666]}},
	#         u'vitae': {   5: 5939,
	#                       6: [   u'http://www.tiik-hanson.com/',
	#                              -237385102.0,
	#                              1587],
	#                       7: {   5: u'https://www.varik.com/',
	#                              6: Decimal('6.7533514241E+11'),
	#                              7: [   datetime.datetime(2010, 6, 24, 9, 59, 10),
	#                                     Decimal('-734.697965004')]}}})

	fake.pyfloat(left_digits=None, right_digits=None, positive=False)
	# -8621698.7132514

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('-25217074.2')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   77,
	#     u'cHFbVakdZAoWOKFkCVEN',
	#     u'muriiZeqzGmRqaUJBZsl',
	#     u'csFmGwKaIHvqSylyQYhR',
	#     Decimal('-717549.50109'),
	#     u'izKQsuUJWrIAcuBHjGuu',
	#     -3236663411664.13]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'brumjantsev@hotmail.com',
	#     3307,
	#     u'https://www.kasper.biz/register.html',
	#     u'https://liblik-sorokin.org/tag/blog/category/category/',
	#     u'http://ojaste.com/search/register/',
	#     Decimal('-4.135778'),
	#     u'vANbsywMNMCfvGGhmpVr',
	#     5715,
	#     u'tTHkviymvgYcXEdjftmn',
	#     u'YsGkFDfNYUDXzcqmkEGQ',
	#     8252,
	#     u'ohOuPZtmOQhfcocoHPid')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'YVMlIBNpKfZcqbwQvYAx', -83.1469, 150, u'LddpnJnOQbhEzSxpuwzk', 4894748761.9778, u'wFNlTNCcMmweFFzIdQpn', u'XQGTHgNnKiaPHmHzNldA', 3742274.7468])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquam': u'OkvMNRTgPGiGkggbtcDJ',
	#     u'animi': datetime.datetime(2001, 2, 21, 3, 0, 26),
	#     u'error': u'EsQuvblfDmSsYiUFzdhg',
	#     u'incidunt': 4229,
	#     u'ipsa': u'aleksei30@hotmail.com',
	#     u'maxime': u'qtaht@zuravljov.com',
	#     u'sunt': u'https://www.treial-kangur.com/faq/',
	#     u'veritatis': Decimal('371.9')}

	fake.pyint()
	# 6295

``faker.providers.ssn``
-----------------------

::

	fake.ssn(min_age=16, max_age=90)
	# u'46505091279'

``faker.providers.user_agent``
------------------------------

::

	fake.mac_processor()
	# u'U; Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2; rv:1.9.2.20) Gecko/2013-02-24 06:33:14 Firefox/3.6.5'

	fake.linux_platform_token()
	# u'X11; Linux x86_64'

	fake.opera()
	# u'Opera/8.52.(X11; Linux i686; pap-CW) Presto/2.9.160 Version/10.00'

	fake.windows_platform_token()
	# u'Windows NT 5.2'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.0; Trident/3.1)'

	fake.user_agent()
	# u'Opera/8.17.(X11; Linux x86_64; tr-TR) Presto/2.9.187 Version/12.00'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_3) AppleWebKit/5312 (KHTML, like Gecko) Chrome/15.0.825.0 Safari/5312'

	fake.mac_platform_token()
	# u'Macintosh; U; PPC Mac OS X 10_6_3'

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; unm-US) AppleWebKit/533.13.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6533.13.6'
