Language es_MX

faker.providers.address

fake.address()
# 'Continuación Bélgica 091 Interior 384\nVieja Suriname, MICH 03451-2103'

fake.building_number()
# '640'

fake.city()
# 'Vieja Guinea'

fake.city_adjetive()
# 'Vieja'

fake.city_prefix()
# 'Norte'

fake.city_suffix()
# 'los bajos'

fake.country()
# 'Turkmenistán'

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

fake.postcode()
# '91592'

fake.secondary_address()
# '817 Edif. 010 , Depto. 480'

fake.state()
# 'Oaxaca'

fake.state_abbr()
# 'MICH'

fake.street_address()
# 'Viaducto Nuevo León 479 Interior 386'

fake.street_name()
# 'Calzada Samoa'

fake.street_prefix()
# 'Retorno'

fake.street_suffix()
# 'Street'

faker.providers.automotive

fake.license_plate()
# '8ENV 07'

faker.providers.bank

fake.bank_country()
# 'GB'

fake.bban()
# 'ZOEC3735440253473'

fake.iban()
# 'GB32MZFT2910560914663'

faker.providers.barcode

fake.ean(length=13)
# '5787168368368'

fake.ean13()
# '9799373383025'

fake.ean8()
# '22991065'

faker.providers.color

fake.color_name()
# 'SandyBrown'

fake.hex_color()
# '#b770df'

fake.rgb_color()
# '1,241,81'

fake.rgb_css_color()
# 'rgb(27,69,186)'

fake.safe_color_name()
# 'navy'

fake.safe_hex_color()
# '#44ee00'

faker.providers.company

fake.bs()
# 'habilita servicios web estratégicas'

fake.catch_phrase()
# 'desafío cohesiva opcional'

fake.company()
# 'Delgado S.C.'

fake.company_prefix()
# 'Corporacin'

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

faker.providers.credit_card

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

fake.credit_card_full(card_type=None)
# 'Discover\nAndrea Lira\n6011078600043475 11/19\nCVC: 614\n'

fake.credit_card_number(card_type=None)
# '5342529202416735'

fake.credit_card_provider(card_type=None)
# 'Mastercard'

fake.credit_card_security_code(card_type=None)
# '677'

faker.providers.currency

fake.cryptocurrency()
# ('NEO', 'NEO')

fake.cryptocurrency_code()
# 'DOGE'

fake.cryptocurrency_name()
# 'Feathercoin'

fake.currency()
# ('BBD', 'Barbadian dollar')

fake.currency_code()
# 'PKR'

fake.currency_name()
# 'Eritrean nakfa'

faker.providers.date_time

fake.am_pm()
# 'AM'

fake.century()
# 'VII'

fake.date(pattern="%Y-%m-%d", end_datetime=None)
# '2006-01-12'

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

fake.date_between_dates(date_start=None, date_end=None)
# datetime.date(2019, 11, 4)

fake.date_object(end_datetime=None)
# datetime.date(1993, 5, 19)

fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
# datetime.date(1943, 9, 15)

fake.date_this_century(before_today=True, after_today=False)
# datetime.date(2007, 5, 20)

fake.date_this_decade(before_today=True, after_today=False)
# datetime.date(2013, 12, 10)

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

fake.date_this_year(before_today=True, after_today=False)
# datetime.date(2019, 7, 26)

fake.date_time(tzinfo=None, end_datetime=None)
# datetime.datetime(1974, 5, 16, 4, 40, 6)

fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
# datetime.datetime(207, 7, 31, 21, 27, 57)

fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
# datetime.datetime(1996, 3, 8, 8, 2, 33)

fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
# datetime.datetime(2019, 11, 4, 4, 46, 17)

fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2006, 9, 11, 2, 49, 18)

fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2012, 6, 2, 21, 10, 28)

fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2019, 11, 4, 3, 0, 50)

fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2019, 2, 27, 3, 17, 48)

fake.day_of_month()
# '28'

fake.day_of_week()
# 'Sunday'

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

fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2019, 11, 26, 17, 7, 50)

fake.iso8601(tzinfo=None, end_datetime=None)
# '1979-09-29T13:40:25'

fake.month()
# '02'

fake.month_name()
# 'August'

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

fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2019, 10, 30, 7, 29, 14)

fake.time(pattern="%H:%M:%S", end_datetime=None)
# '19:33:26'

fake.time_delta(end_datetime=None)
# datetime.timedelta(0)

fake.time_object(end_datetime=None)
# datetime.time(12, 42, 13)

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

fake.timezone()
# 'Europe/Malta'

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

fake.year()
# '2000'

faker.providers.file

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

fake.file_name(category=None, extension=None)
# 'est.docx'

fake.file_path(depth=1, category=None, extension=None)
# '/deleniti/sapiente.json'

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

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

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

faker.providers.geo

fake.coordinate(center=None, radius=0.001)
# Decimal('76.928079')

fake.latitude()
# Decimal('-75.612979')

fake.latlng()
# (Decimal('-7.034922'), Decimal('88.839201'))

fake.local_latlng(country_code="US", coords_only=False)
# ('29.84576', '-90.10674', 'Estelle', 'US', 'America/Chicago')

fake.location_on_land(coords_only=False)
# ('35.6803', '51.0193', 'Shahre Jadide Andisheh', 'IR', 'Asia/Tehran')

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

faker.providers.internet

fake.ascii_company_email(*args, **kwargs)
# 'pelayomaria-del-carmen@anaya.com'

fake.ascii_email(*args, **kwargs)
# 'villegasalonso@hotmail.com'

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

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

fake.company_email(*args, **kwargs)
# 'fleon@despacho.com'

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

fake.domain_word(*args, **kwargs)
# 'industrias'

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

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

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

fake.hostname(*args, **kwargs)
# 'srv-86.hernandes.com'

fake.image_url(width=None, height=None)
# 'https://placeimg.com/994/391/any'

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

fake.ipv4_network_class()
# 'c'

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

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

fake.ipv6(network=False)
# '16ec:9bbf:769:af60:c2a8:7e3b:27b4:3299'

fake.mac_address()
# '05:5a:32:6f:52:14'

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

fake.slug(*args, **kwargs)
# 'alias-quisquam'

fake.tld()
# 'com'

fake.uri()
# 'http://altamirano.com/category.asp'

fake.uri_extension()
# '.html'

fake.uri_page()
# 'homepage'

fake.uri_path(deep=None)
# 'categories/posts'

fake.url(schemes=None)
# 'http://www.corporacin.biz/'

fake.user_name(*args, **kwargs)
# 'raularellano'

faker.providers.isbn

fake.isbn10(separator="-")
# '0-8004-7341-8'

fake.isbn13(separator="-")
# '978-0-442-54412-6'

faker.providers.job

fake.job()
# 'Seismic interpreter'

faker.providers.lorem

fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# ('Perspiciatis ut nam beatae beatae neque totam vel. Qui ipsam ratione '
#  'deserunt corporis magni reprehenderit. Temporibus culpa totam unde ut '
#  'molestiae. Laboriosam laudantium vero atque earum dignissimos explicabo.')

fake.paragraphs(nb=3, ext_word_list=None)
# [   'Illum totam ratione libero asperiores atque. Laborum doloribus in '
#     'inventore nostrum neque.',
#     'Recusandae natus voluptatibus aut dignissimos. Voluptatem assumenda vero '
#     'dolore harum.',
#     'Delectus earum quidem repellendus. Autem excepturi natus. Tempora '
#     'nesciunt maiores.']

fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# 'Eius doloribus dolores ex suscipit possimus soluta.'

fake.sentences(nb=3, ext_word_list=None)
# [   'Harum enim minus aliquam molestias.',
#     'Voluptatem veniam libero consequuntur nam.',
#     'Architecto voluptates quod ipsam.']

fake.text(max_nb_chars=200, ext_word_list=None)
# ('Itaque modi atque iusto eos aliquid perspiciatis temporibus. Dolor ab sunt '
#  'natus.')

fake.texts(nb_texts=3, max_nb_chars=200, ext_word_list=None)
# [   'Facilis delectus nostrum sapiente. Exercitationem odio optio natus nihil.',
#     'Similique error voluptatem occaecati iure iste. Et similique itaque '
#     'ipsum.',
#     'Assumenda itaque ipsum alias pariatur praesentium. Blanditiis dolor '
#     'quisquam ad. In ut fugit.']

fake.word(ext_word_list=None)
# 'eius'

fake.words(nb=3, ext_word_list=None, unique=False)
# ['at', 'assumenda', 'quis']

faker.providers.misc

fake.binary(length=1048576)
# (b'\x19\xb3\x91\xe4\x12\xe1\x80.\xc2\xb2|\xeaw\x8fJ1Q@Z\xb6-\xeeQ\xf4'
#  b'\xba\xf5\x8c\xc4T{\n(\xc1U\xd9\x83\x82&Db\xdf\xcc\xd6FF\xa4|\xc1'
#  b'\xc7\x1b\x8e\xdd\x04\x06\xb2\x12\x9a\x8e\xdd\x81|p\xf9\x9b\xf1\xa4\x80\xc2'
#  b'j\xfc\xeeN]\x84\x10^\x81\xfb\x88\x97\x93\x85mlNu\xa13\x07*\xb8\xce\xf6s\xf7C'
#  b'\x94y\x8f\xaa5\xd1K\xd4NDv\r\xa6\xd1\xf5\xc6\xff\xa7\xeb\xc2B\x8as5'
#  b'\x13\\\x89F[\xd5>qA\xe4v\xfe\xa8\x81\x05\x91\x87c\x14X\x82l\xd4\xb0'
#  b'\xc2\x95\xd4\x1b\xed\x9d!\x8d\xde\x11Bc/\x97=\xd1:\xb7\xcc\xdb'
#  b'\xd8\x82\x94\xfe\xc1\x19\xc7\xed \xd0b\xe4\\L\xf06\xb0\t\x92('
#  b'\x0c\xfc\x8c\xae\x1bf\xf6\xe0\xeeE\x99\xf1\xca\xbf\xea\xf7\xd9\xc1\xa5\xac'
#  b'$YY\xc5\xde\xf3\x1f\x91\xb3F\x87[\xe0\xe5\x8aN/\x10>D\x10\xd5l\xda\x13J,&'
#  b's\xe7\xf6\xf0T\xaf\x074\x8d\xfb\x00\xeae\t\x9c\xe575K\x86\x82\t\x1a\x12'
#  b'\x94\xc8H\x06\x905\xeb[_\xfa\x1f\xf8qh\x7f\xbbl(\x84\xd53\x8b\xb6\x7f'
#  b'\xc6\xee\x04f\xc2\xbc0\x9d\'\xe2"T\x15E\tW\x15\x90\xa4Oi\x9b]XYY\xa5\xb9'
#  b'\xea\x1bw8S\x00\xc9i:\\\x08M"\x19\xc72`\xc1eNz\xaa\xd0o\x01\x96\x9e\x89'
#  b'\xee\x9d\xa3\xd8\xde\x89(J\xfc\xedf:}$\xf7R\x95\x1c\xf1\x9a\x005#\x91'
#  b'\xdfRe\xe2k\x00\xea[\xf7\xb9*|z\xa3\xe1\x80$[x\xb5-\xe0\x8f\xadZ\xbdh0'
#  b'\x07P\x16\x13nT+w\xcfC\n\xb6\x1a\x0e>\xec\xd7\x94\xee\x84\x80S\xaa\x05'
#  b'\xbart\xa6\xb6\xef\xcb\xc0\x8c\x80\x93\xf0\xe2?g\xfaX&\xd2\xf52\xd0\x0fv'
#  b'}"\xae"\xf92\xc8k\x90?4.a\\\x9a"\xb0%\x95\xed\xdd,\xa6\xb3D\xa4^S'
#  b'\x8a$\xd0\xf1^ouf\xe4\xac\x08\xe2\x93&\xc1\xaf\\\xf3`\xda\xe6\x99\t\x1c'
#  b'\xd6\x12\x86e\x98b\x1e\x04\x18\xe0\xdc\xb3\x94\xf9\xbe\xa8\xd3J\xb5\xbe'
#  b'\xe9\xbcg\x91\\\xbej\xb0\xc67\x92Y[\x81\x06\xa12z\xd4\xfa~\x8c\xf9\\'
#  b"\x0eum\xf3\xe7HY\xa7-m\xb6`n\x9f\xf5\xfcq\xb1\x81\xb3\xa0\xa2'z\xfe\xd5.\x83"
#  b'\xc4\xc6\xe9y\xdc\x03\x95q^j\x9d\xd5W,\xa2;V7\xfe\x12\xbcf\xc2\xcagTQ#'
#  b'{\x05\xbf\x7f\xb2\xa8V\xc3\xc5B\xb0\xd8\xce\xa3\xd0l.C\xb5\xf4N\x17\x9f\xa0'
#  b'Q\x11\x0c\x86\xfa\xb4\xdb\xd5oprU\xc6{\xe2\xcdR`\xda#\xfc\x9d\xd35'
#  b'\xcd\xfc\t\xfd^\x9e)\xb7\xb0w\xb4\xdf\xc5\xd02\xb4\x04j\x12\\\xb0@.{'
#  b'\x98O\xc6\xcdK4\xab\xb3\xbc\xc5h\xe6\xa9\xe7Q\xdcK\x16\xc6C\x195y\x11'
#  b'\xc0\xdfH+?\x84\x1eFg\x1a\x9eL\xc1\xb2\xb0\x04g\x1c\xf4\x19\x8f\x15\x1c('
#  b'\xf0\xdf\xbe\x80\xf9"w\xe2\x95\xc5\x7f\x06\x1bJc\xc3\xfc;r8\xaf\x88\xbe#'
#  b'PbD\x1ft]\xed\xf5HG\xa8O\xf2\x1d\x9aek\x1f \xf3p"\xcd\xdf8\xd4\xd7{'
#  b's\x8e\x85\xb1\xeetT\xa0\x10\xdf\x82\xcfD\xf7\xdb<\\\xca\xee$\xe1\x1b\xb9{'
#  b'\x15\xbe\x1e\xfd\xc8HP%\x84\xed\x9f\x7f\xb0\xa9\x13\xd8\x92\x1a\x8b\x8c'
#  b'=}\xef\xaa\xc6\xf9\x99\x9d\x85\x12\x906\x95\xd6q\xac\xb9\xb1\xa1\xc9'
#  b'\xa9\xa0\xd5\xc2\x8dMT*\x15L\x89\x8a\xd6%\xb7\x85\xf0(P\x08\xfe\xb0\xdf\xc5'
#  b'\x13\x85\xa1\xba\\\xac\x00W3\x9b5dr\x17\xa8\xc2[\x14F\x06\xec\x1c\xbfY'
#  b'1\xe0\xc2\xb7\xd0\xe5+\xfaE+\xb4e\n\xe0\xb2\xef*\xc5\x81Y\x14\xa50\x06'
#  b'\x81\xe1\x12\xacau\xc1\xf6\xad/sm\xfaKEn\xa4\xa9\xfc4\xb1\x83\xac5'
#  b'\x80\xb7\t~Y\xfa\xe1^\xd3\xd9n\xfc^,\x84=HT\xc0\xe9\x16dP\x08M\x9d\xad\xfe'
#  b'G\xe5Yj\xd2 \x90\x06\xfcbg\ng\xfc\xbeT\xc3\xbd\xcc\xbc\x96\xbbL\xccJ\n*\xb1'
#  b'm\xaf\x94\xcfv\x05\xf4\x9b:\xdc*3\x02P\xcd\xc2\xd47w\x82\x9a\x1b\x8d\x89'
#  b'IZ#\xaan\xd0\xc0\x96Z\xaf\xd81\xca\x07b\x07BsiO8\xf7\xf7\xd9')

fake.boolean(chance_of_getting_true=50)
# True

fake.md5(raw_output=False)
# '418d8ef7b654b5dcd643f93944b4c7fb'

fake.null_boolean()
# False

fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
# '@3(PvUIvxm'

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

fake.sha256(raw_output=False)
# '13aa38dc5474ef4116b2f8b62473021d26dd19e5185cb88791af9efc5b2ee1f6'

fake.uuid4(cast_to=<class 'str'>)
# 'fcd6bf7a-8e35-488d-ad43-852f728f8476'

faker.providers.person

fake.first_name()
# 'Ricardo'

fake.first_name_female()
# 'Dulce'

fake.first_name_male()
# 'Ofelia'

fake.last_name()
# 'Rodarte'

fake.last_name_female()
# 'Laboy'

fake.last_name_male()
# 'Mejía'

fake.name()
# 'Abigail Aguilera'

fake.name_female()
# 'Serafín Marco Antonio Limón Cervántez'

fake.name_male()
# 'Miriam Sergio Guillen'

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

fake.prefix_female()
# 'Mtro.'

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

fake.suffix()
# ''

fake.suffix_female()
# ''

fake.suffix_male()
# ''

faker.providers.phone_number

fake.msisdn()
# '7318498070531'

fake.phone_number()
# '259.081.8449x423'

faker.providers.profile

fake.profile(fields=None, sex=None)
# {   'address': 'Diagonal Sur Muñoz 148 Edif. 975 , Depto. 702\n'
#                'Nueva Samoa, DF 29546',
#     'birthdate': datetime.date(1985, 8, 23),
#     'blood_group': 'O-',
#     'company': 'Rendón-Madrigal S.A.',
#     'current_location': (Decimal('7.4991115'), Decimal('93.295266')),
#     'job': 'Administrator, education',
#     'mail': 'ariassamuel@yahoo.com',
#     'name': 'Abril Luis Miguel Carranza Pineda',
#     'residence': 'Circunvalación Norte Casanova 373 Edif. 062 , Depto. 862\n'
#                  'Vieja Mauricio, OAX 85259-9157',
#     'sex': 'F',
#     'ssn': '31575442327',
#     'username': 'itovar',
#     'website': ['http://proyectos.com/', 'http://www.industrias.com/']}

fake.simple_profile(sex=None)
# {   'address': 'Viaducto Norte Santiago 982 Interior 479\n'
#                'Nueva Papua Nueva Guinea, OAX 27576',
#     'birthdate': datetime.date(1984, 10, 3),
#     'mail': 'florencia14@gmail.com',
#     'name': 'Eva José Manuél Ávila Escalante',
#     'sex': 'F',
#     'username': 'amendez'}

faker.providers.python

fake.pybool()
# True

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

fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# {   'aliquid': 'kmeza@hotmail.com',
#     'animi': 'https://menchaca.info/search.html',
#     'consequatur': 1990,
#     'cum': 'EABNGXMcJiifClgqjvtS',
#     'delectus': 'zhtQVpBpDbybuLYoQMCs',
#     'error': 'uZdrxruqDcYhgIuveHzK',
#     'laudantium': -4307688.43187773,
#     'optio': 'fLujMFFLzkORKgUkbmnD',
#     'repellendus': 'adela56@gmail.com',
#     'tempore': datetime.datetime(1983, 6, 22, 19, 51, 45)}

fake.pyfloat(left_digits=None, right_digits=None, positive=False, min_value=None, max_value=None)
# 6030573765.49683

fake.pyint(min_value=0, max_value=9999, step=1)
# 4067

fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# [   'QCBXPfuDXqzUTBOVfnRy',
#     5794,
#     datetime.datetime(1993, 11, 19, 3, 36, 27),
#     'rafaelacuna@rascon.net',
#     'ZETVNnJBXEycocmbJfkR',
#     Decimal('7202649805195.0'),
#     'lFWjKWVkGPwGFWCbDWVu',
#     Decimal('4857.74')]

fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [   'ceEioPGptNsTIVhbSwFy',
#     'AGERpgirsuglNogxfIHp',
#     datetime.datetime(1993, 6, 19, 13, 45, 6),
#     Decimal('-8457061.402647'),
#     'rtrQPkLnSlguNRSOTNaQ',
#     8237,
#     -296804527762.74,
#     9691,
#     Decimal('-78.136'),
#     6907,
#     8262,
#     'LLtILpZPyntXhUGnBsSq']

fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# {datetime.datetime(1972, 8, 1, 22, 14, 48), 'liEoBakqEuGuSkibureD', 'TpMocLxOfpTddPEiEJQA', 'israel93@monroy.com', datetime.datetime(1989, 2, 5, 4, 20, 45), 'dEKkmyPOPzNUUnnfqVrn', Decimal('4258520340051.0'), 'OuUmygsJpdNhkNqfWzDv', 'fkEgvNTXKGqPNIuSWmLM', 'https://duarte.com/list/blog/login/', datetime.datetime(1977, 2, 14, 18, 38, 40), 'uZBIzrTfJVzXrKFvghor', -35.0, 'GFyqIiQfFagNtUMgsvlm'}

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

fake.pystruct(count=10, *value_types)
# (   [   'xzuniga@trevino.com',
#         'luLTAIJEaPJWfPioJbjM',
#         datetime.datetime(1994, 9, 24, 20, 34, 9),
#         'FynuDrFzbQxKFxIrvNlg',
#         'http://jasso-jurado.biz/login.htm',
#         Decimal('-43446.2'),
#         'yhobEFXbUuZZHOGEEcwf',
#         -81143045.152,
#         -31538930481839.0,
#         'manzanarescamilo@hotmail.com'],
#     {   'alias': 'CuKoUvuqFFPYJOpOrDUW',
#         'amet': 'JukSoBNFkRzWNhZlbhcy',
#         'aut': 7726,
#         'dolore': 'eloy69@hotmail.com',
#         'est': Decimal('-137159175114.618'),
#         'laborum': 27,
#         'maiores': datetime.datetime(2008, 12, 24, 12, 46, 53),
#         'mollitia': 'helenarios@gmail.com',
#         'soluta': 'https://candelaria-bonilla.com/category/category/',
#         'ullam': datetime.datetime(1978, 7, 13, 11, 51, 28)},
#     {   'assumenda': {   0: 9030,
#                          1: [   datetime.datetime(1979, 7, 2, 11, 0, 53),
#                                 Decimal('-8793159128722.67'),
#                                 'http://ozuna-del.com/app/app/wp-content/terms.html'],
#                          2: {   0: Decimal('-2.336'),
#                                 1: 'FPcCRbNMujtXThtHIsGw',
#                                 2: [   'OWQRRjgJpEkGbnMHpWct',
#                                        Decimal('5662897438.231')]}},
#         'dolor': {   2: 4355,
#                      3: [   'http://industrias.com/',
#                             8525,
#                             datetime.datetime(2000, 6, 6, 22, 44, 14)],
#                      4: {   2: 'TkpmcLHrlPWMAlHAzPtx',
#                             3: 9073,
#                             4: [   Decimal('-33.20707876'),
#                                    'EiFlydoJmKEiBuhXVLJH']}},
#         'ipsum': {   3: Decimal('-22465922374.5'),
#                      4: [   'https://florez.com/category/author/',
#                             'BnPCiMGmoxxnDfXIzYja',
#                             9139],
#                      5: {   3: 'izomShMoHvAfaKQtwyjB',
#                             4: 'http://www.laboratorios.com/tag/category/privacy/',
#                             5: [   'CiPfGlTxIxgsNeJkHrnO',
#                                    'https://www.alcantar.com/category/tag/wp-content/index.html']}},
#         'iusto': {   1: 7623,
#                      2: ['WjfDJElKRVRMxgszxZAt', 7062, 6615],
#                      3: {   1: 'aliciameraz@hotmail.com',
#                             2: 493,
#                             3: [Decimal('-360929658287.9'), 2045]}},
#         'modi': {   5: 4352,
#                     6: [   'echapa@corporacin.org',
#                            Decimal('9958900393.9584'),
#                            'http://www.olmos.biz/explore/category/'],
#                     7: {   5: 'uIoLAfgaVXZMFsMfBuPI',
#                            6: 'ljyEjbwIlXrjNqfeeYYP',
#                            7: [   'https://rios.net/login/',
#                                   'ClExFWTgPQwgUgUYwfWq']}},
#         'omnis': {   8: 'cecilialuna@hotmail.com',
#                      9: [   Decimal('4158.0'),
#                             'stCQfGytivHNLYsWlaFx',
#                             'pkcqrConCJXDHMrePkYi'],
#                      10: {   8: 'JXqefWxLuUFBHPNizCON',
#                              9: -7029178097310.38,
#                              10: [   'timoteo72@proyectos.com',
#                                      Decimal('-77746765300.26')]}},
#         'qui': {   4: datetime.datetime(2004, 10, 1, 2, 0, 49),
#                    5: [   Decimal('4633060.27'),
#                           'CzvrfgvYAGPWoJWgqCZI',
#                           'fernando40@yahoo.com'],
#                    6: {   4: 'ygkKmHnUwbfBkLrePNZf',
#                           5: 'aYomaKMJAdjyQJEuayEX',
#                           6: ['maJdIoLkBKDzmBqAHQjt', 'qzrbAWaQPxBGdsfjuSVq']}},
#         'quo': {   9: 'http://www.espinal.com/author.jsp',
#                    10: [   'luis-miguelyanez@despacho.net',
#                            datetime.datetime(1986, 5, 24, 8, 19, 1),
#                            'HeZIRZhEhZGeHaAROzhZ'],
#                    11: {   9: 'sevaWUnwWwdmDhPFYBqz',
#                            10: 'rRngASSBKOEjrMCowMId',
#                            11: [   datetime.datetime(1986, 4, 28, 16, 31, 34),
#                                    'rufino92@despacho.com']}},
#         'repellat': {   6: 'baGpUlfsQUZoMjGuRZuB',
#                         7: [   'rIcraJyDVXPoMcRZjLWs',
#                                6317,
#                                'chavarriamarco-antonio@hotmail.com'],
#                         8: {   6: datetime.datetime(1999, 10, 5, 20, 14, 45),
#                                7: datetime.datetime(1991, 6, 15, 4, 55, 13),
#                                8: [   'OqDcrDWXFCpSQMawPZpH',
#                                       Decimal('-973663863409470.0')]}},
#         'voluptatem': {   7: 'maXRwJdpTGSSrTGDhjkC',
#                           8: [   'PHWIKuFtpgSFgcWkuAsk',
#                                  datetime.datetime(2008, 5, 21, 15, 42, 5),
#                                  datetime.datetime(1999, 7, 1, 17, 1, 38)],
#                           9: {   7: 'http://laboratorios.com/search/',
#                                  8: 'vAGoziQlSvoTWrlxnzhR',
#                                  9: ['zHRbHCPqJBaINtGZifLm', 701]}}})

fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# (   'unKLjoDAJyhJqOuLzhYU',
#     'bHkpaASkxHwdGCTKqPlR',
#     'mguevara@hotmail.com',
#     5484,
#     'oqbJTHZCeEXlhnAKqBDR',
#     'TtmdaHrDGYPPCzDPKqRt',
#     'KGpCTKgMkErYCeMBsffE',
#     74576571039.678,
#     'aKIePjEnMLJEejszJWst',
#     'izrSeVwLfhNQoAHpBVIr',
#     6397,
#     'dariomontano@hotmail.com')

faker.providers.ssn

fake.curp()
# 'VOIE900303MMCVGV03'

fake.rfc(natural=True)
# 'HUXJ970606A3K'

fake.ssn()
# '63231696954'

faker.providers.user_agent

fake.android_platform_token()
# 'Android 4.1.2'

fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
# ('Mozilla/5.0 (Linux; Android 4.2.2) AppleWebKit/536.1 (KHTML, like Gecko) '
#  'Chrome/43.0.805.0 Safari/536.1')

fake.firefox()
# 'Mozilla/5.0 (Android 5.0.1; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0'

fake.internet_explorer()
# 'Mozilla/5.0 (compatible; MSIE 8.0; Windows 98; Trident/5.0)'

fake.ios_platform_token()
# 'iPad; CPU iPad OS 10_3_4 like Mac OS X'

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

fake.linux_processor()
# 'i686'

fake.mac_platform_token()
# 'Macintosh; PPC Mac OS X 10_10_0'

fake.mac_processor()
# 'U; Intel'

fake.opera()
# 'Opera/9.72.(Windows 98; Win 9x 4.90; az-IN) Presto/2.9.177 Version/10.00'

fake.safari()
# ('Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; lo-LA) '
#  'AppleWebKit/535.17.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 '
#  'Safari/6535.17.2')

fake.user_agent()
# ('Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_7 rv:3.0; it-CH) '
#  'AppleWebKit/535.31.5 (KHTML, like Gecko) Version/5.0.4 Safari/535.31.5')

fake.windows_platform_token()
# 'Windows NT 5.2'