Language ar_EG

faker.providers.address

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

fake.building_number()
# u'585'

fake.street_address()
# u'79977 Maria Port Apt. 947'

fake.postalcode_plus4()
# u'80841-7521'

fake.city_prefix()
# u'Lake'

fake.military_ship()
# u'USNV'

fake.city()
# u'Shawnfurt'

fake.zipcode_plus4()
# u'55011-2126'

fake.state_abbr()
# u'HI'

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

fake.street_suffix()
# u'Gardens'

fake.city_suffix()
# u'ton'

fake.military_dpo()
# u'Unit 0532 Box 6467'

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

fake.country()
# u'Paraguay'

fake.secondary_address()
# u'Suite 284'

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

fake.postalcode()
# u'10948'

fake.address()
# u'67024 Joseph Pine Apt. 237\nSouth Meghan, IL 04441-3874'

fake.state()
# u'Oregon'

fake.military_state()
# u'AP'

fake.street_name()
# u'David Greens'

fake.zipcode()
# u'39656'

fake.postcode()
# u'56968-2625'

fake.military_apo()
# u'PSC 0649, Box 7816'

faker.providers.automotive

fake.license_plate()
# u'546-JSH'

faker.providers.bank

fake.bban()
# 'FMKO7482386545585'

fake.bank_country()
# 'GB'

fake.iban()
# 'GB30HJOY9185211638914'

faker.providers.barcode

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

fake.ean13()
# u'9345675829381'

fake.ean8()
# u'15707406'

faker.providers.color

fake.rgb_css_color()
# u'rgb(79,43,64)'

fake.color_name()
# u'LightGreen'

fake.rgb_color()
# u'1,197,203'

fake.safe_hex_color()
# u'#11cc00'

fake.safe_color_name()
# u'white'

fake.hex_color()
# u'#df9582'

faker.providers.company

fake.company()
# u'Stevens, Hatfield and Turner'

fake.company_suffix()
# u'Ltd'

fake.catch_phrase()
# u'Multi-tiered value-added flexibility'

fake.bs()
# u'exploit intuitive convergence'

faker.providers.credit_card

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

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

fake.credit_card_full(card_type=None)
# u'VISA 13 digit\nBryan Stewart\n4206360352719 07/26\nCVC: 653\n'

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

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

faker.providers.currency

fake.cryptocurrency_code()
# 'FTH'

fake.currency_code()
# 'UGX'

fake.currency_name()
# 'Nicaraguan c\xc3\xb3rdoba'

fake.cryptocurrency_name()
# 'Litecoin'

fake.cryptocurrency()
# ('VTC', 'Vertcoin')

fake.currency()
# ('THB', 'Thai baht')

faker.providers.date_time

fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2018, 9, 7, 23, 41, 41)

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

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(2010, 6, 13, 7, 27, 28)

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

fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 8, 3, 5, 45, 53)

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

fake.day_of_week()
# u'\u0627\u0644\u062e\u0645\u064a\u0633'

fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2016, 1, 18, 14, 19, 17)

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

fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2005, 1, 18, 10, 21, 24)

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

fake.am_pm()
# u'\u0635'

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

fake.date_object(end_datetime=None)
# datetime.date(1998, 6, 22)

fake.date_this_year(before_today=True, after_today=False)
# datetime.date(2018, 6, 12)

fake.iso8601(tzinfo=None, end_datetime=None)
# '2002-01-03T04:44:45'

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

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

fake.month()
# '05'

fake.year()
# '1981'

fake.day_of_month()
# '24'

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

fake.timezone()
# u'\u0623\u0645\u0631\u064a\u0643\u0627/\u0623\u0633\u0648\u0646\u0633\u064a\u0648\u0646'

fake.century()
# u'\u0627\u0644\u062b\u0627\u0644\u062b'

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

fake.time_object(end_datetime=None)
# datetime.time(9, 5, 26)

fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 5, 23, 6, 32, 40)

fake.date_time(tzinfo=None, end_datetime=None)
# datetime.datetime(1978, 9, 6, 11, 58, 26)

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

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

fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2018, 8, 5, 5, 29, 50)

fake.month_name()
# u'\u062f\u064a\u0633\u0645\u0628\u0631'

fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
# datetime.datetime(1381, 9, 19, 13, 23, 27)

fake.time_delta(end_datetime=None)
# datetime.timedelta(8195, 9351)

faker.providers.file

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

fake.mime_type(category=None)
# u'message/rfc822'

fake.file_path(depth=1, category=None, extension=None)
# u'/consequatur/aut.numbers'

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

fake.file_name(category=None, extension=None)
# u'delectus.pptx'

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

faker.providers.internet

fake.ascii_free_email(*args, **kwargs)
# 'dixonwilliam@yahoo.com'

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

fake.tld()
# u'com'

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

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

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

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

fake.uri_extension()
# u'.htm'

fake.uri_page()
# u'register'

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

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

fake.ascii_email(*args, **kwargs)
# 'ellencalderon@yahoo.com'

fake.ipv4_network_class()
# u'c'

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

fake.ascii_company_email(*args, **kwargs)
# 'wgomez@smith-sanford.info'

fake.domain_name(*args, **kwargs)
# u'johnson-fisher.org'

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

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

fake.slug(*args, **kwargs)
# u'natus'

fake.uri_path(deep=None)
# u'explore/explore'

fake.company_email(*args, **kwargs)
# u'zscott@jones-mckinney.com'

fake.uri()
# u'http://graves.biz/privacy/'

fake.ipv6(network=False)
# 'bd6f:a310:21b5:eff2:6608:4cae:c4c9:d24a'

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

fake.ascii_safe_email(*args, **kwargs)
# 'nicholaswilliams@example.org'

fake.mac_address()
# u'ad:04:69:43:b7:ab'

faker.providers.isbn

fake.isbn10(separator="-")
# u'0-503-59449-0'

fake.isbn13(separator="-")
# u'978-1-906931-71-1'

faker.providers.job

fake.job()
# 'Artist'

faker.providers.lorem

fake.text(max_nb_chars=200, ext_word_list=None)
# u'Voluptatibus nobis tempore. Repudiandae minima odit. Ipsam natus quaerat quaerat.'

fake.paragraphs(nb=3, ext_word_list=None)
# [   u'Possimus consequuntur alias officia similique tempora.',
#     u'Qui vitae quo. Culpa laudantium dolorem id illo.',
#     u'Soluta possimus earum. Sequi porro dolor praesentium doloremque.']

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

fake.sentences(nb=3, ext_word_list=None)
# [   u'Iste quae iure molestiae iste libero quibusdam harum.',
#     u'Facilis beatae rerum aut ut.',
#     u'Cupiditate dolores nemo aliquam quas facere in.']

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

fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# u'Facilis dignissimos inventore cumque nulla dolores deserunt. Ex dicta illo qui aut qui sequi.'

fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# u'Accusantium quod sequi fugit quibusdam natus harum.'

faker.providers.misc

fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
# u'L3GYpEDy##'

fake.locale()
# u'mni_IN'

fake.binary(length=1048576)
# bytearray(b'i&=j\xdf\xec\xc2\x18\xaa\xe0a\xd2\xab\x9f\x96I\xa9E\xd8!\xe0\xfc\x81U\x0f\xf0\xbb\x82\xa7*\x14\x00T\xe8nyv;\xe3\xf6\xf6\x1cT\xb2\x95Z\xff\xbaR;\x85*\xda^\xafr\xd1r,\xe1\xe2\xac(\x06\x16\xcf\xf1S,\x049\x87\xa5\xb0\xa2\xebT\x05\xa1 \xa2\x8a\x80Q\xc5d#\xa57S6\xf3\xc7\xa1\xd6\x9c?vF\xf6\xb4\xbe\rf\xe7"3\xefA\x94P\x98\x01\xde\xeex\xd2&I\xccH\xc0J\xf8#\x86\xb9M\xf7\xbdS`\x95\xf3\x8a\x880\xa6\xf4)\xcaW\xc9aq\xa5\xc5\x07_)m\xe0\xf88~\xb3\x9a\x80\x81f\xa2\xe6\xf8\x91Z\x7fMo\x95\x17,\xd613\xd0\xbb\xb4\xe8[\xa7: \xf3\xd6x\x1f\x07F\xb5t\x84\xe0\x98\x8f\xb6\x95\x99\x84\x87vGA\xe6x\xb8\xcf\x03\xc7{Wz \xb3\x17\x93]O~\xdf\x92(6\n\xe1\xc7^\xd2\xfa\x7fg\x83\xa3`\x94:\x7f>\x9a;_\r\x86*\x18j\xc8h9\xe7\xadjbg\xbd\xa6\xe7xe\x96\x93r\xb8\xe0czQ\x07\xbb\xe2\xdd4\tukX\xcc\x12E\n\x8f\x90?T\x04\x17\xbb(U\xfd\x02\xd7\xaf\x8a0\xab\x07\x99\x03\xaf\xcd\x127\x15\xae\xe5\xa9\xcc\xc3\xd3D\xc4\xcd\xbc\xa4hB\x91$\x03\\\xad\xbb)\xebr\x98\x883\x9f^\t\xa3\x08=\xa6\xe5Z\xecA|(\x92n\xd0\xb4\xf6\xeedm5\xa0JnCu\x84\xb3`\xd4DV\xdfm\xd3\xab\xfcb\xf3\xf1\x18B\xb5R\x8a2"\x03$\x9b9n~\x02\xfd}\x88\xb6fiP\xe6\xc8\x10U\xde\xfa/W\x97\xdb=\xed\x7f\xe4O\xb5\x99\x16\xaa\x86\xe0~\x91\x893\xc7:\x01q9+u\x991\nbO\xac\x8d\x02\xaa\x1agy9`\x1a\xb2\xeb\xf2\x87\xa7J,\x03m$oX\xed\xf1\x9f\x08\xab\x8f\x0bP\x17Y\xcc\xea\x9a\xe5i\xb1\x98t6\xb2\x9f\r\x9c\xea\xf8\x93\x89\x9e\x13\x8a\x8a\xd2T\x8d\x04h\xcb)F(\x80.x\xc08\x99\xdb\xde\x1fVn\x10\xf3\xa8\xe0\x15\xf6)\xdd\xc5\x8cf\x81\xa6U\x85\xc1r\x9c\x8b\x0c{\x92B\xec\x8cY\xea\xf9\xf1\x16.g|\x8f\xe3?\xa3\xc14\xe5\xaa\x85t\x1d\xc8\xe0\xb9\xde(h=\xbd|R\x05/^-e\xf5\xd8\xc5\xbf\x07\xddO\xc4)Q\x07\xc62E+\xa2\xfca\x93\x85\xc9\xf6\x97\xa7A\x14\x86\x9bk\xc2\xde\x91\xa9\xbf\x04\xaa;L\x19\xb1\xb5\xc5\xef\xba\xde\xee\x8f\xbb\t0\xc8\xc6\x01\x9f1\xe8\x8d\x15\xe4\xc0\x9e\xbeb\xe77\xacl}x\xf4\xb0kF\x89\x1f\xc9\xddV\xe5B;}\xd3\x1a\x06\x96\xd1\xea\xb7\x11\x10\x19\xa8\xbd\xde\x87;\x11\xcb4\x96y6\xcf\x1d\xa2T\x151\xb5\xda\xf86\xdc\xc5\xc3\xa9\xab\x9d\xc7\xa9\xe2@\x91\xf6qY\x0fU\xc5\x19}\x82\xc5\x19\x04\xfb\xb5\xb6S\x9a\x9f\xd1c52yn\x98\xe9k\n6\x81\xb1\xb4\x94\xff\xf0\xcd\x8a\xdc\xfe\x82\x1fI\xff=;\xbe\x8azzg\xfb\x11\xfa\xfa\x9a\r\xd4\xe3\xc2\x18\xc7[\x01\xcd\x1em\xe7\xd3l;\x88KF\x93\xe55%!\xe6\xa2\xdb\xa4\xdc\xe8P\xd4\x87\xe5\x1a\xe6\xcaYL\xeb\xe8\xa7<\x9a\x99a\x01\xdf\xd3\xde\x85\xf1\xd8n\x89Epj\xc2\x9f\x0f\xc2\xe5\x80\x9b\xfa\x81\x86J>\x1c\xfa\x0b\x7f\x93\xdcM\x7f$7+.\xceY\xbd\xd52}K\xf2(\\\xa7H\xb0\x9a\xb2\xe1\xef\xd3\x16#J4\xd8\xce\xee\xf1\\\xdd\xe4\x96\xb0F\xbd\xc3\xc6\xc8\xeb(Hn\xd0\xe5Y\xed\xd9\x9d\xe9/\xccU\xf6\xf9\xefe\xf8l}^\\\x13l\xf3\'x"N\xe5\xb2$\x87\xac1P7\x0c\x13\x1d\x82jQb%\xe9pg \x92\xca\x1d\rc\x1f#\xf9\xdb\xb0i@8\xba\xe2\xf0\x1bt\xe7\xecr\xed\xc5\x12\xb2?\xd7\x0b_\xdc!.\xb1\x93\x0e\xdf\xc0D\xee\x91\xb4\x16\xd6/Y\xa3\xba\xffd\x9f\'\xcek\xbb\x98\x82H>\xce>\xf2\x8anv\xcb\xaf\xedG\xd9\x8a\xcb\xa5\xa2w\xb0w\xa7\xb4\xa5\xb9\x98\x83T\xf9\x8a\x89\x8cFg\xedn\xe4\x1a\xf8E1\xd9G.L\xf7F\xa1\x0eb\xac\xa1\t\x81\x87kX\xb2\xca\xd9\xf5\xa7R\x86')

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

fake.sha1(raw_output=False)
# '87080e47c404d3072e10b25e78f9815b14893384'

fake.null_boolean()
# False

fake.sha256(raw_output=False)
# '04f058463df79d3c63ca9640c43761315daf73835b8229c8d14954480f16bd11'

fake.uuid4()
# '654d7791-42e0-29e8-680e-42e2347b20da'

fake.language_code()
# u'st'

fake.boolean(chance_of_getting_true=50)
# True

faker.providers.person

fake.last_name_male()
# u'Robinson'

fake.name_female()
# u'Carly Smith'

fake.prefix_male()
# u'Mr.'

fake.prefix()
# u'Dr.'

fake.name()
# u'Jessica Johnson'

fake.suffix_female()
# u'DDS'

fake.name_male()
# u'Daniel Gibson'

fake.first_name()
# u'Christopher'

fake.suffix_male()
# u'Jr.'

fake.suffix()
# u'MD'

fake.first_name_male()
# u'Jason'

fake.first_name_female()
# u'Rachael'

fake.last_name_female()
# u'Johnson'

fake.last_name()
# u'Espinoza'

fake.prefix_female()
# u'Mrs.'

faker.providers.phone_number

fake.phone_number()
# u'+56(6)6624373827'

fake.msisdn()
# '3799060949914'

faker.providers.profile

fake.simple_profile(sex=None)
# {   'address': u'9750 Bobby Harbors Apt. 486\nKaitlynberg, LA 34597-4734',
#     'birthdate': datetime.date(1972, 12, 16),
#     'mail': u'clarkmelissa@hotmail.com',
#     'name': u'David Robles',
#     'sex': 'M',
#     'username': u'sara19'}

fake.profile(fields=None, sex=None)
# {   'address': u'863 Rose Gardens Apt. 932\nAmyport, MD 78181-0977',
#     'birthdate': datetime.date(1957, 1, 14),
#     'blood_group': 'A+',
#     'company': u'Snyder LLC',
#     'current_location': (Decimal('-0.6253795'), Decimal('118.340324')),
#     'job': 'Chief Executive Officer',
#     'mail': u'myersernest@gmail.com',
#     'name': u'Peter Flores',
#     'residence': u'0714 Jillian Islands Suite 844\nJuliebury, DC 50626',
#     'sex': 'M',
#     'ssn': u'170-61-4991',
#     'username': u'peggy92',
#     'website': [u'http://www.king-hernandez.biz/', u'https://www.garcia.com/']}

faker.providers.python

fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# [   9234,
#     u'ylttJsEVcmqoeYuMOsZj',
#     u'dannymoore@rice.org',
#     Decimal('-52447.7622742'),
#     u'PoIXQlObSeaUuxIeHOAH',
#     datetime.datetime(2012, 1, 20, 17, 42, 44),
#     u'aJfTRWoBRlWxWqoFpahF',
#     1996,
#     -664232706.3751,
#     -23339156.5555,
#     datetime.datetime(1979, 12, 15, 3, 23, 15),
#     5745,
#     7462,
#     5593]

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

fake.pystruct(count=10, *value_types)
# (   [   datetime.datetime(1993, 7, 24, 15, 30, 41),
#         u'cAOxOYBYdGCEFaDRKVlB',
#         1577,
#         u'http://miller.net/',
#         u'GMRPofPruoUSFvsENieE',
#         u'http://brown.com/terms.html',
#         7926,
#         u'VzZINnVQKrQizMlhgCmp',
#         1407,
#         3725],
#     {   u'consequuntur': u'https://pearson.com/',
#         u'facilis': Decimal('0.3051'),
#         u'itaque': u'dwilkins@sanchez.com',
#         u'labore': u'XSWBbLcjYOGJLHjXNhRn',
#         u'laboriosam': u'WRdhwkTjKyQRrhxRvbRT',
#         u'nam': datetime.datetime(1996, 12, 22, 23, 53, 12),
#         u'possimus': u'https://wagner.org/tag/terms.html',
#         u'tempore': 1958,
#         u'unde': u'lqoWEHCBmgXXWIOLkFRc',
#         u'voluptatem': u'wWkWAgxCHmlGaavhPYdK'},
#     {   u'dicta': {   8: Decimal('-98025.338'),
#                       9: [u'iFFShCadaBsFsNKDemvg', -292551.912060216, 6109],
#                       10: {   8: u'http://gallegos.com/app/app/register.html',
#                               9: Decimal('-77.436005037'),
#                               10: [   u'https://www.anderson.net/home/',
#                                       u'rossnicholas@yahoo.com']}},
#         u'dignissimos': {   3: u'FlWeDFCcoQUVySGbdglR',
#                             4: [1.0, 1477, Decimal('-777.86')],
#                             5: {   3: u'http://kelley.com/',
#                                    4: 5366,
#                                    5: [Decimal('-97217.0'), 5667]}},
#         u'error': {   5: u'fdawson@hudson.com',
#                       6: [   u'BQXBhhtyuzkWGzYMOFQc',
#                              u'https://www.bender.net/',
#                              u'vtaGvwNqoTFymDwnsPYQ'],
#                       7: {   5: u'hwXtkSMYrjgsbjUfMuEo',
#                              6: u'sIpoUzmSouGRtFBRzede',
#                              7: [   datetime.datetime(1973, 12, 6, 23, 40, 50),
#                                     u'eddieibarra@ramsey-beck.org']}},
#         u'hic': {   0: u'https://www.fleming-smith.com/app/post.htm',
#                     1: [   u'corey08@smith.com',
#                            -358.39,
#                            Decimal('-3055303732.26')],
#                     2: {   0: Decimal('1.47315336385E+12'),
#                            1: u'ecugQTbTwUwxqiIVNQkw',
#                            2: [   datetime.datetime(1980, 9, 27, 22, 32, 37),
#                                   u'http://goodman.com/privacy/']}},
#         u'inventore': {   2: 6097,
#                           3: [   -85.4351628428,
#                                  -581416.6972785,
#                                  u'mgbBsCcdGgCCTqjBGfQz'],
#                           4: {   2: u'http://freeman-nelson.biz/tags/homepage/',
#                                  3: u'DgfQTvYEOzGRQIFKvjOI',
#                                  4: [   u'dillonmichael@hotmail.com',
#                                         u'http://zavala.com/home/']}},
#         u'labore': {   6: u'zmYSALBYhqPTStxXxcOz',
#                        7: [   u'psbEHhnFsDfsIXKbubFS',
#                               u'https://www.lewis.info/faq.htm',
#                               u'AEzpJuLzeIgSTvdTWtck'],
#                        8: {   6: u'johnwhite@hotmail.com',
#                               7: -5.27877892194,
#                               8: [   u'https://www.shaw.com/faq/',
#                                      u'CoDDCXavCNZrwFRHcbjH']}},
#         u'mollitia': {   7: u'VnGYfyMpxCflvEvaIpnI',
#                          8: [   datetime.datetime(1972, 12, 2, 10, 26, 23),
#                                 9277,
#                                 u'dustinbrock@yahoo.com'],
#                          9: {   7: datetime.datetime(1980, 1, 31, 3, 36, 17),
#                                 8: 754,
#                                 9: [u'FnrrXfdfSZxnkAazEXQl', 5353]}},
#         u'odio': {   1: u'uuonumddnDPGFPxzLhgB',
#                      2: [   u'JPjbkoWWzaOMbqoNXGKp',
#                             Decimal('-6.75916332012E+13'),
#                             2420],
#                      3: {   1: 3504,
#                             2: u'jonathan64@wright-lawson.org',
#                             3: [9766, u'PcfnOHytqbMPqKeNChTT']}},
#         u'porro': {   9: u'uharrington@hobbs.net',
#                       10: [   u'VavlZXZKgNfUmJDMmkJK',
#                               u'teGBgnZunzGSKqQYqSro',
#                               -6.1008585321],
#                       11: {   9: 9657,
#                               10: u'YKqZiqNrbIilYvMPOJEV',
#                               11: [79, -666847170575851.0]}},
#         u'vitae': {   4: u'eZUFykZLMYwmCWnRaCzh',
#                       5: [   -543758834.0,
#                              Decimal('30267890.289'),
#                              u'iOQNsCgIrezpyIhYAbeW'],
#                       6: {   4: u'WaoxLkYocKIvjGDVXJzN',
#                              5: u'UPccylukvOzVjfaehyfq',
#                              6: [   u'kristinagordon@hotmail.com',
#                                     u'TnZANykTxlkVwjXQROoh']}}})

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

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

fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [   u'https://sanchez.com/homepage.html',
#     u'QfbHGRovvFpuLUfXmgKx',
#     Decimal('4.74502714473E+14'),
#     u'JBgigDdRFEEHvEYjGOnL',
#     datetime.datetime(2017, 12, 2, 5, 51, 4),
#     u'https://christensen-curry.com/home/',
#     u'https://www.mcmahon.com/',
#     u'ZvpBESlXHDBjkVeXWZvO',
#     2116,
#     u'hEQwMeaIbfztrFptMSiD',
#     u'RmOmnWeNPiJaUAMVTaqV',
#     5206,
#     u'rxJubjOuaCOtprpiLLaJ']

fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# (   1902401026.4,
#     u'wurrqSFNDEnxOLDXmDnQ',
#     3236,
#     u'VahvBZgJniXWNHBqRunr',
#     u'NwgOyFfqMIvrjIXNrpSV',
#     u'NjYPuZAsNhKcawuzRHti',
#     6249,
#     u'AGTRFLEOFyfHOJaeLnan',
#     Decimal('-71975286542.0'),
#     6541,
#     u'tVXduROXvYbwovgDOukB',
#     Decimal('933076533.0'),
#     u'https://lopez.com/app/author.html',
#     datetime.datetime(1993, 2, 9, 7, 0, 3))

fake.pybool()
# False

fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# set([datetime.datetime(1974, 3, 15, 5, 18, 8), u'TETrKQJsNwcCMjMzTkmf', 41729705.2443403, u'BAOEZpoYhtUqbRTzeIca', 8012, datetime.datetime(1989, 1, 24, 12, 7, 5), u'ViqlLrKBGZOpFBbXJFBQ', Decimal('558475.9'), -500482.94109596, 65820.35693, u'sirqmQAKgKczJSjOdfrv', u'https://hale.info/'])

fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# {   u'consequatur': 8100,
#     u'dolore': 1492,
#     u'nam': u'https://morales-espinoza.net/main/search.asp',
#     u'natus': datetime.datetime(1994, 4, 3, 10, 14, 41),
#     u'nemo': datetime.datetime(1988, 7, 7, 1, 50, 30),
#     u'quidem': u'frazierkathleen@rivera-combs.com',
#     u'similique': u'cKLUjllzJaFutNiYegwx',
#     u'tempora': datetime.datetime(2018, 3, 15, 2, 47, 51),
#     u'voluptatem': 7211}

fake.pyint()
# 4290

faker.providers.ssn

fake.ssn(taxpayer_identification_number_type="SSN")
# u'502-51-7473'

fake.ein()
# u'06-8300651'

fake.itin()
# u'961-91-6270'

faker.providers.user_agent

fake.mac_processor()
# u'PPC'

fake.firefox()
# u'Mozilla/5.0 (Windows NT 5.2; es-HN; rv:1.9.1.20) Gecko/2015-02-13 16:14:47 Firefox/3.8'

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

fake.opera()
# u'Opera/8.99.(X11; Linux x86_64; ne-NP) Presto/2.9.189 Version/12.00'

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

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

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

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_7_8) AppleWebKit/5351 (KHTML, like Gecko) Chrome/40.0.816.0 Safari/5351'

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

fake.safari()
# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_4 rv:6.0; br-FR) AppleWebKit/531.6.3 (KHTML, like Gecko) Version/5.0 Safari/531.6.3'