
Language es_MX
===============

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

::

	fake.state_abbr()
	# u'CHIS'

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

	fake.street_name()
	# u'Viaducto Armenia'

	fake.address()
	# u'Circunvalaci\xf3n Rep\xfablica de Corea 533 Edif. 882 , Depto. 087\nSan Joaqu\xedn de la Monta\xf1a, MICH 04630'

	fake.street_address()
	# u'Viaducto Sur Almonte 659 Edif. 692 , Depto. 736'

	fake.postcode()
	# u'37327'

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

	fake.longitude()
	# Decimal('40.304041')

	fake.country()
	# u'Islandia'

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

	fake.secondary_address()
	# u'940 255'

	fake.street_prefix()
	# u'Circuito'

	fake.street_suffix()
	# u'Street'

	fake.city_prefix()
	# u'Sur'

	fake.city_suffix()
	# u'de la Monta\xf1a'

	fake.building_number()
	# u'24948'

	fake.city_adjetive()
	# u'Nueva'

	fake.city()
	# u'Nueva Rep\xfablica \xc1rabe Siria'

	fake.state()
	# u'Yucat\xe1n'

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

::

	fake.license_plate()
	# u'RX-4735'

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

::

	fake.bban()
	# 'QBAY5671035224195'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB97AKZO0303639732712'

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

::

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

	fake.ean13()
	# u'0649554183953'

	fake.ean8()
	# u'93949330'

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

::

	fake.rgb_css_color()
	# u'rgb(15,88,25)'

	fake.color_name()
	# u'RosyBrown'

	fake.rgb_color()
	# u'164,154,42'

	fake.safe_hex_color()
	# u'#991100'

	fake.safe_color_name()
	# u'aqua'

	fake.hex_color()
	# u'#c409b2'

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

::

	fake.company_suffix()
	# u'A.C.'

	fake.company()
	# u'Corporacin Terrazas-Segura'

	fake.company_prefix()
	# u'Corporacin'

	fake.catch_phrase()
	# u'codificar basado en necesidades sincronizado'

	fake.bs()
	# u'libera infraestructuras interactivas'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'VISA 19 digit'

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nEsteban Carri\xf3n\n4932110402829719 07/19\nCVC: 763\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'EOS'

	fake.currency_code()
	# 'BTN'

	fake.currency_name()
	# 'Tunisian dinar'

	fake.cryptocurrency_name()
	# 'TRON'

	fake.cryptocurrency()
	# ('EMC', 'Emercoin')

	fake.currency()
	# ('VND', 'Vietnamese \xc4\x91\xe1\xbb\x93ng')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 10, 6, 31, 59)

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

	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(1990, 4, 17, 7, 42, 34)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 5, 18)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 13, 8, 34, 9)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 6, 4, 23, 0, 14)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2014, 5, 24)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 10, 11, 11, 52, 26)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2005-06-14'

	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(1972, 3, 23)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1986-12-25T06:53:49'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2018, 1, 15)

	fake.month()
	# '03'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '05'

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

	fake.timezone()
	# u'Asia/Yakutsk'

	fake.century()
	# u'X'

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

	fake.time_object(end_datetime=None)
	# datetime.time(2, 3, 20)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 4, 14, 3, 7, 54)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1998, 7, 15, 20, 27, 48)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '22:37:38'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 4, 15, 10, 7, 53)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(526, 11, 17, 0, 35, 20)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(15106, 16583)

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

::

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

	fake.mime_type(category=None)
	# u'image/jpeg'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/qui/veritatis.key'

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

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

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/568x543'

	fake.tld()
	# u'biz'

	fake.email(*args, **kwargs)
	# u'robledosoledad@yahoo.com'

	fake.url(schemes=None)
	# u'http://grupo.com/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'index'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'lorena39@olmos.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'galvarado@laboratorios.net'

	fake.domain_name(*args, **kwargs)
	# u'segovia.com'

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

	fake.domain_word(*args, **kwargs)
	# u'laboratorios'

	fake.slug(*args, **kwargs)
	# u'ipsum-libero'

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

	fake.company_email(*args, **kwargs)
	# u'bfajardo@hernandez-lomeli.com'

	fake.uri()
	# u'http://www.industrias.com/categories/wp-content/explore/login/'

	fake.ipv6(network=False)
	# '6af7:59cc:8383:1fc7:ba78:374e:f072:e68f'

	fake.free_email(*args, **kwargs)
	# u'venegassocorro@hotmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'mreyes@example.net'

	fake.mac_address()
	# u'd5:a9:1c:33:76:7a'

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

::

	fake.isbn10(separator="-")
	# u'1-307-42080-X'

	fake.isbn13(separator="-")
	# u'978-0-8411-2838-5'

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

::

	fake.job()
	# 'Investment banker, corporate'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Officia molestiae minima. Error explicabo iusto id vel.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Ipsam iste exercitationem ipsam illo optio. Ullam quisquam odio veniam reprehenderit ex praesentium.',
	#     u'Quam autem quae ea atque quod vitae. Iure velit doloremque occaecati in. Exercitationem deleniti necessitatibus maiores vel. Labore cumque quos repellat voluptates molestias.',
	#     u'Exercitationem tempora dolore asperiores debitis blanditiis. Minus rerum harum.']

	fake.words(nb=3, ext_word_list=None)
	# [u'necessitatibus', u'sequi', u'illo']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Facilis eligendi eos voluptatibus sequi minima.',
	#     u'Deserunt sapiente nostrum hic eos consequuntur modi.',
	#     u'Nostrum laborum libero mollitia sequi illum unde.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Occaecati dolor est labore ipsum nihil quia. Nemo nostrum commodi molestias minus cumque odit.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Culpa quis nemo ducimus.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'@M2X+rnm(+'

	fake.locale()
	# u'cy_GB'

	fake.binary(length=1048576)
	# bytearray(b'\xad\xf8y\xd2T\xf6\xf7A\xa5\xf6\xc2\x89\x9c\xed{\x83\x143\xe5Q\xc2t\xb6c\xb5\x93v6\x803}dk\xde\x04\xaa7\xac_#\x18\x1a\x021\xf5w\xc7\xc8\xd0Y\xc0ib\xf5\xf9\xe8\t\xc8\x81\xb3\xc8^\x9f\xe7\x8b$w\xa6\xea\xb8\x97&\x02\x96\x9f\x97\x1c\x93S\xd5\xbe7`\x1d\x90qiQ\xe67\xe8\xfb3\xe8\xe6\xd2\x97\x98\xaf\x18A(\x99\xd2\xaf\x16:\x90?\xb1"\xb4\xb8\xabn2}Z\x03/+\xd060/\x82\xddM\x0c"\xa4 F:s\x0b\x0f\x93\xf3\x8b\x82\xf5\xd4\x91j\x1d 1\xe0\x9by\x9b\x94)2\xb4\xc4\xd8\xbd\xbd\x1b\xac\xcb8\xa6\x9f\x91d=r\x93\xb5\xde{\x87s\x86]8(\xa7s\x82\xa9\xde\x01\xe0\x13\xff\xf6\xde\x9bo\x14\x9a#\x18\xb8\x03\xb8\x86\x16\x8e\xb8\xc8[\xb0\xad\xd1jH\xe3,w,<\xd6W\x00\x88\x147\xb6\xb6\x17\xc67B\xaa\x93\xc0\xa7\xa4g\xae\xfa\xf6(~\xf0\x95\xe5\xc6r]\xaaXaQx$p\xe5\xbc-\xad-;H\x8fI\x01,\xd974(\x05(\xcah\x1bM\xb5\xe7\xd4\xb5 oM!r\x98fxR1R\xf0d\x12[\x89m~\xe2\xda\x1a\xe2+\x9fb\x8f\xf2\x08\x0c\x13\x19\x80,u\xdefo\x1b\xf2c\x8f\x14\xf6XF\xfen7\x017ei\xc3\xde\x83\x99C`\xf5\xaa[\xefi\x88(\xf7P\xd2|L\xa9\x9e?~\x91\x80]+c\x94\n\xd0.d\xa3_\xd4\x1d\x0b\xc6\x87\xd8\xf5\x17C=3 \xec\xe2\xf6\x97\x82\xaeN\x8f\xc8,O\x0f8\xcb\xa3q\x0fy\xbf\xaf\xda\x98\xd6\xb1W\x17\xb9\xecl\x12\xe2<\xbf\xa9\xf6\t\x9a\x92#\xbc\t\x1f\xa6t\x03\xbd^34b\x04\xd0\x01\t\x92\xa3\x8fU\x81\xea\xcc\xa9\xce\xf0Y\xd7*(\xda"\x0eH\xbf\x10\xd1X\x00\xa2\xfd\x12\xae/\'\xeb\x84a\xb5\xff\xc8S\x17U\x8d\xc2\x18\x05\xc3nk\xab\'\xa3X\xc8STs\xe5\xc6\xf4\xcc\xf7\xaaa%\xb0\xf9R\xd5\x90\xfb[\xb4\xc5\xb8IP\x99\x8aGh\xbf\xce\xc7\xf4\x02Y\xa4y\xba\x1b\xbc\xde]o~\x1bB\xc4`\x1e!\xec\xaec%\xfa\x89\xe2W\xe9\x81\xef\x8f<\xdf\x86/\xae\xf9\xd3\xea\xe17\xdd\x91\xeb>o$\xed\xdadM\x9b\xbb@\x9c\xd5\xe4\xb5\xe5_\xc3x<\xab\xd1\xcf\xe1\xd3\x9c^\xbe\x02\r\xf9|\xfdl\'\xf0\xc2@A\xd04\'\xdce\xa6.\xca-e\xe3w\x18#MM\xa2\x0f\xc8\xd4\x11J\xae/\xfb\x92\x1d\xdd\xb6\xea:K\xd7\x89 )\xd2\xfd\x05\xda\xf3\xefPh\xca\xd2k\x00\x9d\x9a\x17a\x88\xb1\x83\xa3Y\x1d(l\xbb\x8b\x06 G\xe1\x1e\xa1\x1d\xe8\x06)\x7f\xdf\x93\xb8\xf3k5\xa1\x16Bi\x04\xe4/\xd5\x95=\xd7\x9d\x97\xb6K\x04!`\xba\x82\xdde{\xb9\xcc\xbf\xbc\xf1\x06\x9b\xdc\x11\\\xf2\x0c&\xeb\xa0\xef.\xeb\x16\x93\xae\x8br\xaa\xb7\xf9/p\xf9\xfcRo\xd7\x1c\x84\xe7\t\x1f\xa6\xbe\x8d\xf3\xbc\xff:y\xa3\xfb\xc7\xff\xce\xaa\xb8\x9a\xf5\xa2x\xcaZ\x16\xe7\n\x1c)\x00\x1bHE\x93\x9c\x1f\xa5\xa6\xeee\x8e6Ws\x1dx\xa1z\xfa>\xea\x8eCl\x06\xf7]S\xf9R\xd8Q\xd5\x11\xa8k`\xce\xab!\x0e\xe1O\x08\xdd\\\x8av\x96L\xef\x11\xaaZO\x8e\xac\x01\xd4CAn\xc8\xb84P\xedwT\x80\x19\x13&\x11)p\xed\x85\x06Em4Rn\xa0\xdb\x14\x9a\xb3G\xb2\x10 x\xce\x86\xafki\x0f\x83:\xec\xa2\xe1\xe7\x8756\xe8~q-I\xe7\xdaa\x99\x02\x8d|\xe6\x05\xc7\xa3\x11\xa5\x14\xfa4\xbb3\n]\x9d\\|\x1a\xfb\xcc\x19\x15sn\x1a\rl\x98\t_A\x8c\\\x11~\x10{,\x1a\x80D\xce7d1\x91+\x94\x05~q\xfa\xbc\x15\x9e\xcf\x88\xcd\xc1\x84\x03\x1au\xe9$\xf1\xbb\xc5\x15\x80\x18\xbe\xde(\x12t\x03:\x96\xc1l\xb6&\xd8@\xcd9W\xdc\xc8uo+H\xf5\xce/\x01\xa9q\xf4f\xa5\xaf\x0f&\xbf\x1a\xa6\xc9\x9cn\xef\xb2{\xfb8\x83\xb9\xa4\x9f\x81\xec\x8a\xac~\xc6\xd9\xab\xb8\x07Sz\x1b\x946\xcb\x9e\xc5\xe4&m\xfd\xad\x8b\xc6b')

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

	fake.sha1(raw_output=False)
	# 'cf1e86a2c9a766cfe0f3d7330121ee8596bad529'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '064b0be701afe5aa1dd8325ed4b78eb12d2273c076fef2df6444ad882a8993e6'

	fake.uuid4()
	# '88af6a54-3318-73b3-4ddf-c81e6184694e'

	fake.language_code()
	# u'kl'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Gallegos'

	fake.name_female()
	# u'Lic. Cristal Tafoya'

	fake.prefix_male()
	# u'Sr(a).'

	fake.prefix()
	# u'Mtro.'

	fake.name()
	# u'Asunci\xf3n Colunga'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Irene Sosa Alejandro'

	fake.first_name()
	# u'Gregorio'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Blanca'

	fake.first_name_female()
	# u'Israel'

	fake.last_name_female()
	# u'Tovar'

	fake.last_name()
	# u'Olmos'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'773-549-0775x35781'

	fake.msisdn()
	# '8567825626871'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Peatonal Murillo 238 Edif. 804 , Depto. 462\nNueva Nauru, MOR 21615-5088',
	#     'birthdate': datetime.date(1990, 1, 3),
	#     'mail': u'asuncion32@yahoo.com',
	#     'name': u'Ivonne Carranza Rojas',
	#     'sex': 'M',
	#     'username': u'alicia99'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Pasaje Cuba 355 Interior 698\nSan Marisela los bajos, TLAX 64118',
	#     'birthdate': datetime.date(1926, 6, 1),
	#     'blood_group': 'B+',
	#     'company': u'Segovia-Samaniego',
	#     'current_location': (Decimal('80.0647435'), Decimal('-77.993196')),
	#     'job': 'Patent examiner',
	#     'mail': u'marisol84@gmail.com',
	#     'name': u'Dr. Antonia Enr\xedquez',
	#     'residence': u'Calle Sur Viera 917 707\nSan Benjam\xedn los altos, CAMP 31047-4682',
	#     'sex': 'F',
	#     'ssn': u'661-46-4000',
	#     'username': u'qolivarez',
	#     'website': [u'http://www.orta.info/', u'http://www.despacho.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'KyjdfxZfLbggMtoNuvfg',
	#     8064,
	#     u'https://club.biz/faq.htm',
	#     8837,
	#     7366,
	#     -631339.33903694,
	#     4302,
	#     Decimal('6.97305585826E+14'),
	#     5686,
	#     u'https://barraza-caraballo.org/tags/category/wp-content/index.htm')

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

	fake.pystruct(count=10, *value_types)
	# (   [   7657,
	#         Decimal('-97.782'),
	#         u'fMBUnECFUDkJEIwGtJsd',
	#         datetime.datetime(2003, 9, 21, 12, 28, 13),
	#         2299,
	#         u'lvYXQhUhYxeWhsWJZKAg',
	#         u'yguwBXWRAOaCipviughd',
	#         u'jmMYvtLMKZvyUUxjnLCn',
	#         2886,
	#         datetime.datetime(2017, 9, 13, 9, 44, 19)],
	#     {   u'adipisci': u'BhTjArAvKzzIZZRsGcnj',
	#         u'aliquam': Decimal('4.33118181847'),
	#         u'animi': 1739,
	#         u'aperiam': u'http://tello.com/home/',
	#         u'facilis': 4139,
	#         u'officia': 1288,
	#         u'placeat': u'LJrmNNtMLnxeORvVqjqz',
	#         u'quae': -99.98745,
	#         u'veniam': 1122,
	#         u'voluptate': 6701},
	#     {   u'aperiam': {   7: 1254,
	#                         8: [u'MCPhxLwGmlVkYITrkAUB', Decimal('-8.0'), 914],
	#                         9: {   7: 4620,
	#                                8: u'CpIPsLgeHMIZHlRpJclC',
	#                                9: [   6636,
	#                                       u'http://dominguez-garza.info/faq.jsp']}},
	#         u'cum': {   5: Decimal('-67375121736.9'),
	#                     6: [   -6769.13573356,
	#                            u'DIpeNFnNlPVcXJnLqoTH',
	#                            11874.6276222048],
	#                     7: {   5: 69621794.52711,
	#                            6: u'YbEGXprcYDFKbLqRfhAb',
	#                            7: [u'JsGRXYpbwckcKhPFcagX', 16170933.2]}},
	#         u'debitis': {   4: datetime.datetime(2018, 8, 2, 23, 21, 3),
	#                         5: [   u'https://medina.org/wp-content/tag/main.html',
	#                                u'https://suarez.com/privacy/',
	#                                u'lBTjvvpmHhOwLeIfXXSy'],
	#                         6: {   4: 5468,
	#                                5: 4786,
	#                                6: [6539, u'fiNGwWAkxeZmPGAKxfNl']}},
	#         u'molestiae': {   6: 7407,
	#                           7: [   u'jmEVYTXxQCldOGNzoMXj',
	#                                  6212,
	#                                  u'http://www.salcedo.net/explore/homepage/'],
	#                           8: {   6: 9358,
	#                                  7: u'vbPcOObUpLrgBXrgIFCH',
	#                                  8: [7165, u'reynaoscar@gmail.com']}},
	#         u'neque': {   2: u'CjwOGIqPExCWsECnIUfi',
	#                       3: [u'XOOqzMRgffOrWgyOcOFz', 6606, -8.17],
	#                       4: {   2: u'PVviIcleYMYNQcaMqsdl',
	#                              3: u'AylnLPINSPcQTWVWNBAV',
	#                              4: [   u'IHwZSwQLwPaeFnAjzMTv',
	#                                     datetime.datetime(1971, 5, 16, 16, 16, 29)]}},
	#         u'optio': {   9: u'DdpDGbwipxaMskUfqKGs',
	#                       10: [   u'hcKeLQPtYeCZWhppfajh',
	#                               Decimal('9.93201722558E+12'),
	#                               u'ewkTsdPVfJHpThijwYsi'],
	#                       11: {   9: u'rvcswtKDQYwqLqjKYbwy',
	#                               10: u'https://preciado-benavides.com/',
	#                               11: [   u'HTDmVzPUXkjHRKioUCRc',
	#                                       u'lujklQGlZunuuoTfvJXL']}},
	#         u'quas': {   0: -847283361798.0,
	#                      1: [   u'gIbyMXZQOeifBHjBFbXC',
	#                             u'hEDrlEWLiGaWIKrAlMSE',
	#                             datetime.datetime(1990, 4, 28, 9, 11, 18)],
	#                      2: {   0: Decimal('982.678050354'),
	#                             1: 7910,
	#                             2: [   u'http://www.villarreal-bermudez.com/explore/wp-content/main.php',
	#                                    u'yIhAJtgyiNHJOwoMUJMo']}},
	#         u'quo': {   8: u'https://proyectos.com/',
	#                     9: [   datetime.datetime(2006, 12, 16, 21, 55, 40),
	#                            u'JRDWfnQimBkJBotUEFyy',
	#                            u'tZLwGbfjlyiRYbuYVykM'],
	#                     10: {   8: -93849.9075026395,
	#                             9: u'vIzbuuzEISEoqVCSHKYU',
	#                             10: [3197, u'omgZXUzwUFJBiPkybRBw']}},
	#         u'saepe': {   1: 7400,
	#                       2: [   3314,
	#                              u'QHywxvwUofWzOzMOXaeq',
	#                              u'http://barraza.com/main/'],
	#                       3: {   1: u'https://colunga.com/',
	#                              2: Decimal('-517575988614'),
	#                              3: [   u'minerva40@diaz.com',
	#                                     u'IQbxGTEENsruGIREQNAV']}},
	#         u'sed': {   3: u'xxnsxHuRilQcScRcNGzF',
	#                     4: [   datetime.datetime(1995, 4, 2, 23, 57, 29),
	#                            u'dAIOMVIrFsEqMeddTXQM',
	#                            datetime.datetime(1970, 6, 9, 9, 13, 42)],
	#                     5: {   3: u'YNOaTvMKysoUCkZZPRMA',
	#                            4: u'VUwcaZSMBlPlAkNKViZd',
	#                            5: [   Decimal('6994.2665'),
	#                                   u'ZNVGXEnUObksCJBhqUTj']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(2012, 12, 23, 21, 18, 14),
	#     u'http://despacho.com/wp-content/wp-content/faq.jsp',
	#     u'kJFYGWmnlgVdyPZuCmWs',
	#     datetime.datetime(1988, 1, 19, 23, 26, 53),
	#     u'APHOMmkIfBJULqSifKdG',
	#     9013,
	#     u'DUSoJOaBYEVJSzMcWQci',
	#     122281984582.4]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'SihPCwDmCZluMecYHuhJ',
	#     u'http://preciado.info/explore/app/homepage/',
	#     u'XmRJsTihWYwHVfdFgYMf',
	#     u'sYkptryvjNalIDmSCnhP',
	#     u'jde-la-torre@manzanares.com',
	#     1.7,
	#     u'https://www.rodriquez-jasso.org/',
	#     u'KDTSJVFRZnEjLJpbIRRd',
	#     u'CMlFrRUcafNpPatQYCou',
	#     u'ElvHzVsKGzRaWljrpzWg',
	#     Decimal('20126.99'),
	#     4.2236656354681)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('2594218906.81'), datetime.datetime(1993, 2, 15, 22, 36, 24), 7782, u'MUJyyVQpppaDfCJSrhUu', Decimal('1.191'), u'https://guajardo.com/search/search/', u'ttsnQYbRSFkiSnZBIOma'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'beatae': u'http://laboratorios.com/categories/terms.php',
	#     u'debitis': u'fCVZsiSDbppxsbnVsVks',
	#     u'ea': u'vcasarez@industrias.com',
	#     u'fuga': Decimal('288184.22204'),
	#     u'iusto': 137,
	#     u'natus': u'jQSAzYBNCNocpAwMicEH',
	#     u'possimus': u'mkKJifDcfQidUJqKPzTZ',
	#     u'quaerat': Decimal('34.1342686'),
	#     u'quasi': u'MVGYrDBdonvTgwBypwTK'}

	fake.pyint()
	# 2179

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'887-44-9890'

	fake.ein()
	# u'51-0783189'

	fake.itin()
	# u'943-95-7143'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2017-04-23 08:58:04 Firefox/9.0'

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

	fake.opera()
	# u'Opera/9.13.(X11; Linux i686; nds-NL) Presto/2.9.181 Version/10.00'

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

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

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

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5310 (KHTML, like Gecko) Chrome/34.0.876.0 Safari/5310'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2 rv:2.0; yue-HK) AppleWebKit/531.48.3 (KHTML, like Gecko) Version/5.0 Safari/531.48.3'
