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

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

::

	fake.state_abbr()
	# u'GTO'

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

	fake.street_name()
	# u'Andador Nauru'

	fake.address()
	# u'Diagonal Sur Carrero 997 762\nNueva Brasil, CHIH 31454'

	fake.street_address()
	# u'Privada Sur Prieto 385 455'

	fake.postcode()
	# u'14683-6827'

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

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

	fake.country()
	# u'Madagascar'

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

	fake.secondary_address()
	# u'312 Edif. 203 , Depto. 085'

	fake.street_prefix()
	# u'Callej\xf3n'

	fake.street_suffix()
	# u'Street'

	fake.city_prefix()
	# u'Norte'

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

	fake.building_number()
	# u'65019'

	fake.city_adjetive()
	# u'Nueva'

	fake.city()
	# u'San Juana de la Monta\xf1a'

	fake.state()
	# u'Tamaulipas'

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

::

	fake.license_plate()
	# u'565T'

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

::

	fake.bban()
	# 'FALE4642958820905'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB40DAUC8092535888681'

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

::

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

	fake.ean13()
	# u'8845574395198'

	fake.ean8()
	# u'30908796'

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

::

	fake.rgb_css_color()
	# u'rgb(188,29,124)'

	fake.color_name()
	# u'AntiqueWhite'

	fake.rgb_color()
	# u'157,27,5'

	fake.safe_hex_color()
	# u'#aa2200'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#e1b191'

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

::

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

	fake.company()
	# u'Venegas y Iglesias S.A.'

	fake.company_prefix()
	# u'Despacho'

	fake.catch_phrase()
	# u'l\xednea segura sist\xe9mica visionario'

	fake.bs()
	# u'implementa canales uno-a-uno'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nVioleta Caballero\n213164058438794 10/27\nCVC: 434\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XPM'

	fake.currency_code()
	# 'TWD'

	fake.currency_name()
	# 'Afghan afghani'

	fake.cryptocurrency_name()
	# 'TRON'

	fake.cryptocurrency()
	# ('EOS', 'EOS.IO')

	fake.currency()
	# ('LAK', 'Lao kip')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 22, 11, 17, 21)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 16)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2011, 6, 10, 14, 28, 53)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2012, 3, 16)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 14, 5, 13, 54)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2018, 7, 26)

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 6, 14, 9, 49, 56)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 5, 8, 15, 12, 11)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1987-10-05'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 9, 27, 50)

	fake.date_object(end_datetime=None)
	# datetime.date(1984, 6, 15)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 7, 5)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2018-05-24T13:23:14'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2000, 12, 7)

	fake.month()
	# '02'

	fake.year()
	# '2009'

	fake.day_of_month()
	# '15'

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

	fake.timezone()
	# u'Europe/San_Marino'

	fake.century()
	# u'XIV'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1933, 2, 17)

	fake.time_object(end_datetime=None)
	# datetime.time(23, 13, 32)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 16, 2, 35, 5)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1996, 9, 1, 3, 9, 8)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '12:14:58'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2018, 8, 9)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 20, 17, 14, 26)

	fake.month_name()
	# 'July'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(24, 2, 6, 0, 8, 2)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(12070, 42713)

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

::

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

	fake.mime_type(category=None)
	# u'text/javascript'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/libero/vero.bmp'

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

	fake.file_name(category=None, extension=None)
	# u'officiis.html'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'jaquelinebrito@hotmail.com'

	fake.url(schemes=None)
	# u'http://www.arevalo-candelaria.com/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'register'

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

	fake.safe_email(*args, **kwargs)
	# u'claudiacampos@example.net'

	fake.ascii_email(*args, **kwargs)
	# 'godinezgabino@ayala-bermudez.net'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'qpantoja@munoz.com'

	fake.domain_name(*args, **kwargs)
	# u'razo-estevez.com'

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

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

	fake.slug(*args, **kwargs)
	# u'doloremque-optio'

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

	fake.company_email(*args, **kwargs)
	# u'quezadaalvaro@club.net'

	fake.uri()
	# u'https://www.club.info/tag/blog/app/register.asp'

	fake.ipv6(network=False)
	# '9fe6:3c08:8ecf:20c:8fc6:2839:c8c1:34ee'

	fake.free_email(*args, **kwargs)
	# u'yfernandez@yahoo.com'

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

	fake.mac_address()
	# u'83:4b:1a:a5:08:d0'

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

::

	fake.isbn10(separator="-")
	# u'1-4758-3970-7'

	fake.isbn13(separator="-")
	# u'978-0-9671279-4-1'

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

::

	fake.job()
	# 'Call centre manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Debitis porro ducimus illo. Neque delectus veniam quisquam voluptatem harum nihil. Molestiae reiciendis quaerat sapiente soluta a.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Alias sunt laboriosam eligendi voluptates corporis.',
	#     u'Amet officiis eaque fugiat. Facilis omnis nihil possimus at occaecati labore. Fugiat similique iure aliquam sunt aut perferendis porro. Sed dolorem repudiandae cumque unde dolor ipsum distinctio.',
	#     u'Rem reiciendis nihil quaerat. Sint in laudantium. Eum corporis enim sit non facere corrupti.']

	fake.words(nb=3, ext_word_list=None)
	# [u'beatae', u'quidem', u'rerum']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Nemo illum vero id enim nobis.',
	#     u'Ad cupiditate tempora nisi.',
	#     u'Sunt qui deserunt earum.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Libero assumenda corrupti numquam. Aliquam atque optio nam temporibus quas blanditiis. Commodi enim in dolore omnis accusantium vitae.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Velit nam harum tempore fugiat accusamus optio.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'i%#)4NjZzq'

	fake.locale()
	# u'fr_FR'

	fake.binary(length=1048576)
	# bytearray(b'\\\xcc\xdbE\x08F&\xd4\xc8yQ\xe9\xe0b\xd2\xf0&\xce\xc22_no\xd82\xda\xab\r\\\xc4f)\x13e\x15\xb1I_\x93\x98\xe2\x02\xeb\xb1u\'L\xa9\x04[\xef\xfdt\xc4\xd2"%\xd3z\xe7\xbf\x82hG\x96\xc9\xa1\xf2\xe2\xaa\x1f\xa1\\\x14Lk\xae\x1a\xb2\xfd\xfeJI\xe7\xdc#\xf0\xc8\x1f1|\xb5\x96~\x12\xd1\xda\xa2cr\xc1\xf5\x94\x84I\x9a\x15\xae\xbc\x07\x97\x17\xda\xd9\xfd\xd8Z\xcc\xcc\xbb)\x08\x8d\x82\xfc\x9dE<\xbb\xf7\xcdk\x06QX\x9e5`\xb2\x92\xbf\x16\xcc\xd6\xad\xdbD\xb6\xa4\x81\xc0S*!j\xe9Sz\xee\xbc\xbe\xc0\xd2\t 1\x12a%\x1f\x98U\x93"5r*\x81P\xe5S\x8f\xc3i\x83f\x05$Q\xb9S\xf7\x96\x8d\xbe\xa9\xf2\xad@\xb0:\x08h\x11\x03\x82\xfa\xe5\xb2>8Yg\xe5\x17c:_\xfc\xdf[\x03Z\xc3\xf1\xfa6 \xa2")\x83\xa1\x98\x01\xe3#\xb9d&A\xf8@u\x9d\tt\x88yp\x93\x92\xb0\xbc\x1e9\x18\r\xfbo\xd5\xb0\xc86\xf1\xc0\n}\xab\r\xcf\xa7d!\xd3\x7fC\x9b\x88\xe3\x88\xc6x\xc8\x12\xdc\xd5)\xf6\xf8\xac\x9e\x96\xc1\xf3\xe8\x06\x0c\xb1\x81\xbb}*\x89\x8b\xec^-\x08Qv\x9bUk\x0fJ\x82F;Y\x1b\x85\x17\xa5\xbe\x98\xfaSn\xf0W5#|\\\xe1\xae\xde\xe7kR\xaa\xae\xd4BW\xab\xc8\x1f\xa4\x05qC\xa9\x18\xdbF\xab\xce<\x83\x842\x8e\x18\xa87\x94\x92\x0b\xfb\xd2\xbct\xa09f\xe5\xf6fWp\xceq\xfe\xc8\xd58s\xf9\xbeJ\x10\xc4\xd6\x9f(\x0e\xa8w*\x99\x07\x80\x95Y\xf2cl\xe1Q&Qx\xefFo\x00\x8d\xb3\x8e\x12\xeat\xa5@}\xe7\xa9\x02\xb1\xfa\xaa4\x8a\x89c\x11\xd7\xf5A\xe5A\\\x11|rO\xb3\nQ\xa2U\xee8\x9am\xaf\x9b\xd6\xe3\xea[\x1a\xf2E\xb5\x98\x92)-\xbcf\xabX\xc1\xea\x8f\xf2:\xcd\xa3\xb2\xaaA\x8dx\x8aP6\x14/\xa4\xd7`)[\x03[\x84\xd7\x04\x8b\x80c\x13VqD\x0431#@\xe9\xc5\x05\x84\xf1\xd7\xc2J\xad\xf5\xbc\x8b\x15\xac\xda\x04C\r\x13\xc5\x0b \xdcH1v\xac\xa8n\tGz\xb1\x88V\xd3\x8c\x7fK\x10\x08\x07\xa0\xe8e\x80x7L*\x83\x19\xc2\xfb\xea}1\xef\x10\x8c.sN\x11Dc\xa8*o\x05\x8e`Z\xb0\r\xff\xe4M\xc0\x87\x85eVm\x0e\xde\xd8\xd9\xd6\xa5\xe9\xe6r\xb0py\xf3\xc2\xe0\xf1\x8b\xc9\x98\xf6 F\xb8[\xa4C\xd3\xae\\\xbf\x14\x827t]\xecJ}~\\\xf24f\xb7\r\xf7Cc\xbf\xf0Ge\xd7M\xe1\xb46\x82\\[\x17\xeeJ\x8f\x0f\x04\xa6\xf8\xd9.\x91\x89\xa5\t\xc4e\x94]\x18\x87h*\xe9m\x01\xd5A\x00|\xb0|\xe0\xc2\xb8\x82<\xf0\xd66\xc2\xfc\xf3r\xfb\xb5\x827\xad<\x841h\xe3a\xddE\x14\xcf\xec\t!\x8c\x96\xab\x1b\x898\xab\xd5$\x82\x8d\xef\xb5\x8a\xf5\xaa\x92\x9b\x84B\xc7\xe0\xc5\x1e=q\x04\xea\xa3ll\xea\xdd\xceZ\xea%%\xc2\x8dC\xa8\x94b\x84\x89\x07[\xa4Y*E4\'9\xe2J!r)\xa4\xfd^UCIdB\x8bz\xe9N\xbd?t\xf42\x1e\xbbqc\xfd\x01s\xfeq\xe3\xd1\x81N;\xb7VY\x9a\x0eP\x0b\xc2\x88\xf6~8s\xa6s\x7f\xca\x98\xbc\xae\xfe\xffe\x96\x0c\xcb\xc0\x0b\x92\xb1J+{*L\n\x12i{\xf3\xb4\xcfV\x06\xbeda\x99U\x0e\xd6\x07-\xd7H\xa3\xdd\xe0\xaf\xf7\x16r\x07u\x17\xc7\xd6\xda\x9e\xff\xc1\xdce.\x85L\x89\xa2\xf9\xf1\xb8\xaf(igQ\x8a]\xad\x01\xc0\x01R\x8e\x8eP\xaeg\x97\x93[\x08\x19\xd5\xe9\xa4_!\x07\xe8\x891p\xe8V7\x82!\xca\x1f\xf4L)\x18fz\x04\xa5\xc5\x93\x8f\xb2\xe0\xfanGO\x10#\x05-\x99\x0c\x9cyEL\xb58\xa1\xd9\xcd\x94\xb2\x1dzf5\xac\x0e\x17\x0c\'\x93\xcd\xbfi\x1b\xf4\xd1\xbd\x08\x8f\x89\xbd\xc8\xec\xadd4\xe5\x17\x04\x902u\x8f\xf8uW\xdb\xe2\x15\x97"\x81d\xd5\x13\x87Vo\xa2|\xd619\xe6\x9f2+\xc7;H')

	fake.md5(raw_output=False)
	# '1ff6ab12726352e5e17dcee5b73ae725'

	fake.sha1(raw_output=False)
	# '856e35824a00587f1a6cdce73aa43def952e7219'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '0293eee1b1c005ea634b523e509dfab957eef0348999cc73ffcd5915c48296f6'

	fake.uuid4()
	# '8b7e0460-6653-3c8d-671d-e9fb5434c6d7'

	fake.language_code()
	# u'kk'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Carri\xf3n'

	fake.name_female()
	# u'Anel Meraz'

	fake.prefix_male()
	# u'Ing.'

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

	fake.name()
	# u'Ing. Alma Lovato'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Marisela Escobedo Villalobos'

	fake.first_name()
	# u'Carla'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Josefina'

	fake.first_name_female()
	# u'Esther'

	fake.last_name_female()
	# u'Urbina'

	fake.last_name()
	# u'Mondrag\xf3n'

	fake.prefix_female()
	# u'Ing.'

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

::

	fake.phone_number()
	# u'270.089.5000'

	fake.msisdn()
	# '9187615898825'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Ampliaci\xf3n Sur Mat\xedas 221 Edif. 099 , Depto. 951\nNueva Rep\xfablica Unida de Tanzan\xeda, ZAC 64819-0932',
	#     'birthdate': datetime.date(2005, 7, 16),
	#     'mail': u'jesus87@hotmail.com',
	#     'name': u'Sr(a). Luis Manuel Rasc\xf3n',
	#     'sex': 'F',
	#     'username': u'merazclara'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Boulevard Norte Villalobos 398 Edif. 816 , Depto. 273\nSan Mar\xeda Teresa los altos, BCS 05021-3475',
	#     'birthdate': datetime.date(1939, 5, 16),
	#     'blood_group': '0+',
	#     'company': u'Gurule y Acosta S. R.L. de C.V.',
	#     'current_location': (Decimal('33.026285'), Decimal('-63.667281')),
	#     'job': 'Claims inspector/assessor',
	#     'mail': u'yuridiachavarria@yahoo.com',
	#     'name': u'Gilberto Mesa',
	#     'residence': u'Corredor Ir\xe1n 267 Edif. 456 , Depto. 994\nSan Aida de la Monta\xf1a, SLP 68388',
	#     'sex': 'M',
	#     'ssn': u'529-22-5545',
	#     'username': u'rvelazquez',
	#     'website': [   u'https://www.despacho.com/',
	#                    u'https://www.despacho.biz/',
	#                    u'https://carvajal.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'https://www.corporacin.com/category.htm',
	#     u'http://sanchez-valle.com/tag/category/categories/terms.html',
	#     datetime.datetime(2003, 8, 19, 6, 16, 9),
	#     u'rsNnoqhaxlHjSfHiccYs',
	#     5839,
	#     u'IahpLoFrQgRQETBafRWe',
	#     u'wcardenas@grupo.net',
	#     u'TgAXdNSFTWTJLKtbULpy']

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'http://vega-farias.org/app/tags/posts/author/',
	#         Decimal('628766101.5'),
	#         datetime.datetime(1991, 12, 10, 21, 58, 21),
	#         39.46600962,
	#         u'aldo56@yahoo.com',
	#         u'http://www.laboratorios.info/privacy/',
	#         u'http://www.vela-corrales.com/',
	#         6777,
	#         3551,
	#         u'QSlxwXGrERSYPrQiuzDl'],
	#     {   u'adipisci': u'http://www.despacho.info/',
	#         u'alias': 8081,
	#         u'autem': 157,
	#         u'delectus': 1078,
	#         u'fugit': u'JsZXVOmYVGoudWYApDoj',
	#         u'laborum': u'natividad41@yahoo.com',
	#         u'mollitia': Decimal('10501.5197956'),
	#         u'repellat': 5298,
	#         u'suscipit': u'iTuGspSFYWLmfBMpYSgF',
	#         u'voluptas': u'posadajuan@gmail.com'},
	#     {   u'autem': {   5: Decimal('-594360506.184'),
	#                       6: [   u'donLEGHQWZcnDlsVNPmq',
	#                              Decimal('-611847649044'),
	#                              u'http://solis.com/index/'],
	#                       7: {   5: 7433,
	#                              6: Decimal('-1.7636747217E+13'),
	#                              7: [1276, u'zylKRebYjmYwKvfvNaiP']}},
	#         u'corrupti': {   9: 9238,
	#                          10: [   u'KYaGPUfxfQlMbUCgdtBQ',
	#                                  u'http://www.melendez-salas.com/blog/app/search.php',
	#                                  9747],
	#                          11: {   9: -393545113876.0,
	#                                  10: Decimal('189073259.702'),
	#                                  11: [   datetime.datetime(1990, 1, 2, 21, 15, 57),
	#                                          7535]}},
	#         u'est': {   4: -2412.8738922905,
	#                     5: [   78,
	#                            datetime.datetime(2016, 12, 31, 11, 51),
	#                            u'pekgBGvBSeSWWnJsVNya'],
	#                     6: {   4: u'mhTlTZHvrocRKxqxTLlZ',
	#                            5: Decimal('91643777843.2'),
	#                            6: [   u'ruby85@castillo-arellano.net',
	#                                   u'cRdiGiZetMArHLnLnZWB']}},
	#         u'et': {   0: u'sregalado@cordova-cintron.info',
	#                    1: [   Decimal('299103770.28'),
	#                           u'zocAwnTCYDAmQMtTVXzK',
	#                           u'http://www.acosta-farias.com/'],
	#                    2: {   0: 7053,
	#                           1: u'zwFBnuWhlokzGjPJoGUS',
	#                           2: [   u'http://ocasio-gollum.com/category/tag/homepage.html',
	#                                  2141]}},
	#         u'excepturi': {   7: datetime.datetime(1971, 5, 16, 15, 42, 44),
	#                           8: [   u'elena02@jasso.org',
	#                                  u'OBCVDGvFRkYWAriZdUXH',
	#                                  u'DOKvALETSWMJnBlwbvPo'],
	#                           9: {   7: 935409.0,
	#                                  8: u'NWxJEQkMYOKdHKieTIug',
	#                                  9: [   u'qjJyTnWWEVFSAgUPVAMW',
	#                                         u'mlFofxhXsSpNJOOWAkmA']}},
	#         u'facere': {   2: u'uyeOIapOZrpVscpYQUzR',
	#                        3: [   u'uIfcTjLdAhibsyMPYQux',
	#                               733041124206668.0,
	#                               u'juan-carlosmoreno@corporacin.org'],
	#                        4: {   2: Decimal('-807.87'),
	#                               3: 2472,
	#                               4: [   u'inesmiranda@laboratorios.com',
	#                                      datetime.datetime(2002, 7, 12, 13, 50, 2)]}},
	#         u'harum': {   6: 868915970928.69,
	#                       7: [   u'https://www.corporacin.com/index.jsp',
	#                              u'YIzepntzcmxjDMwfbpIj',
	#                              1421],
	#                       8: {   6: u'pacGqYzBmUHHuCKFYCpr',
	#                              7: u'WZooYjtZxKdhphlqsnpe',
	#                              8: [3176, u'jGlUtvNjbRgodrcpTuVh']}},
	#         u'impedit': {   8: u'mqGrpoLHgGpIcvZylzhB',
	#                         9: [   Decimal('-8816395154.14'),
	#                                u'mavalos@yahoo.com',
	#                                387],
	#                         10: {   8: datetime.datetime(2006, 9, 1, 17, 29, 27),
	#                                 9: u'oliviapalacios@industrias.org',
	#                                 10: [-544965598593252.0, 8863]}},
	#         u'quaerat': {   3: u'OVuKhAarnZbwcWmqcMdL',
	#                         4: [u'fnYiynMZduBCAENpWvne', Decimal('7.33'), 2737],
	#                         5: {   3: datetime.datetime(2007, 10, 21, 3, 44, 35),
	#                                4: u'carmenrojas@grupo.com',
	#                                5: [   datetime.datetime(1970, 12, 11, 10, 44, 37),
	#                                       u'MkaqskBUUPreEMHlKhGY']}},
	#         u'quod': {   1: 3995,
	#                      2: [   u'uxOdYrinwJWisrKViczs',
	#                             8059,
	#                             Decimal('-784.2632797')],
	#                      3: {   1: 66.75825824068,
	#                             2: 26.6188,
	#                             3: [Decimal('-9.43030326902'), 4940]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'vSMjCoSsXOAlqseMvuvy',
	#     8395,
	#     u'ymyLArAJWIvfzHlpqgPp',
	#     u'QCcbTcsOiYkHmSBRnwtP',
	#     Decimal('-6.09232627017E+12'),
	#     datetime.datetime(1971, 3, 6, 20, 9, 37),
	#     datetime.datetime(1974, 3, 5, 3, 7, 27),
	#     u'TASdAWGbMnRZtUzVxXPs',
	#     u'isIrcytbsLcAeMdPlDac',
	#     3910836479250.3,
	#     u'HvShyhwmBWwewWHJqeDo',
	#     484950532881811.0]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime.datetime(1990, 5, 27, 6, 45, 32),
	#     datetime.datetime(1990, 12, 17, 3, 24, 3),
	#     u'nancylemus@yahoo.com',
	#     u'RgYiVMnFohZYVDtrMNbc',
	#     8647,
	#     datetime.datetime(1987, 6, 1, 13, 42, 28),
	#     u'fnWCdiFeAGPIcBSzBBrp',
	#     u'miriam35@yahoo.com',
	#     309,
	#     u'ZaAJWqeyrDwlCoSpSFGB',
	#     u'noelia44@laboratorios.org')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'http://www.vera.com/homepage.php', u'VCXkWwvhimAdNGLMQVZP', Decimal('84429.393139'), u'hPpCnxouDbYyfIGlEWLl', u'xlRAmwAKcrTHcpAzFIDO', u'https://sauceda.com/', u'grijalvamayte@laboratorios.com', datetime.datetime(2012, 5, 12, 13, 38, 26), 1717, u'pgwlQkqFYbKwzAQYMNey', 7236, u'RDISunRrheiyrIVTrRoi'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aut': u'rmojica@gmail.com',
	#     u'distinctio': -172908691.9653,
	#     u'est': datetime.datetime(2002, 1, 22, 4, 15, 35),
	#     u'et': 5200,
	#     u'expedita': u'BHJUzcfirGuTmpuXZvKl',
	#     u'labore': u'adelade-leon@yahoo.com',
	#     u'minus': u'PfMhGaNcLGJEskmZESVU',
	#     u'praesentium': u'https://www.najera.com/',
	#     u'suscipit': Decimal('7738.7945'),
	#     u'vitae': u'gOrQyYLhfNGROuUOhdys'}

	fake.pyint()
	# 2867

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'052-59-6011'

	fake.ein()
	# u'87-5957272'

	fake.itin()
	# u'998-92-3863'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.0; hi-IN; rv:1.9.2.20) Gecko/2013-04-05 03:57:19 Firefox/5.0'

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

	fake.opera()
	# u'Opera/9.17.(Windows NT 6.1; dz-BT) Presto/2.9.175 Version/10.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows CE; Trident/3.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; yi-US) AppleWebKit/535.2.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6535.2.7'

	fake.linux_processor()
	# u'i686'

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

	fake.mac_platform_token()
	# u'Macintosh; Intel Mac OS X 10_8_8'

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; fy-NL) AppleWebKit/533.8.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B113 Safari/6533.8.3'
