
Language ar_JO
===============

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

::

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

	fake.building_number()
	# u'6530'

	fake.street_address()
	# u'8939 Rebecca Mountains'

	fake.postalcode_plus4()
	# u'10638-3935'

	fake.city_prefix()
	# u'East'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'Lake Richardtown'

	fake.zipcode_plus4()
	# u'09213-8476'

	fake.state_abbr()
	# u'MS'

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

	fake.street_suffix()
	# u'Grove'

	fake.city_suffix()
	# u'side'

	fake.military_dpo()
	# u'Unit 0850 Box 7766'

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

	fake.country()
	# u'Guadeloupe'

	fake.secondary_address()
	# u'Apt. 904'

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

	fake.postalcode()
	# u'71135'

	fake.address()
	# u'PSC 4965, Box 1131\nAPO AE 28119'

	fake.state()
	# u'Hawaii'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Christina Stream'

	fake.zipcode()
	# u'83676'

	fake.postcode()
	# u'19964'

	fake.military_apo()
	# u'PSC 3519, Box 2862'

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

::

	fake.license_plate()
	# u'71-60940'

	fake.initials()
	# u'99'

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

::

	fake.bban()
	# 'TYUV3286835181973'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB70NGGT7424233041522'

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

::

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

	fake.ean13()
	# u'7307012133263'

	fake.ean8()
	# u'38004070'

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

::

	fake.rgb_css_color()
	# u'rgb(178,227,155)'

	fake.color_name()
	# u'Orange'

	fake.rgb_color()
	# u'247,148,252'

	fake.safe_hex_color()
	# u'#aa0000'

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#35c514'

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

::

	fake.company()
	# u'Huber, Richards and Kelley'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Seamless zero administration focus group'

	fake.bs()
	# u'brand impactful e-commerce'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nBrian Clay\n180073917541509 02/23\nCVC: 919\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XDN'

	fake.currency_code()
	# 'CUC'

	fake.currency_name()
	# 'Polish zloty'

	fake.cryptocurrency_name()
	# 'Nxt'

	fake.cryptocurrency()
	# ('POT', 'PotCoin')

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

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 5, 6, 31, 4)

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

	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(1997, 9, 30, 15, 4, 54)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2016, 9, 18)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 11, 22, 21, 8)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 9, 26, 5, 17, 30)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2010, 10, 16)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2001, 11, 3, 12, 54, 49)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1975-09-18'

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1979, 7, 8)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 4, 21)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1977-05-25T03:44:53'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 10, 4)

	fake.month()
	# '07'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '21'

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

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

	fake.century()
	# u'XIII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(15, 14, 11)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 6, 21, 11, 51, 52)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2001, 6, 1, 22, 32, 34)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 1, 22, 11, 8)

	fake.month_name()
	# 'October'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(335, 3, 9, 20, 5, 34)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(7336, 70623)

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

::

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

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

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

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

	fake.file_name(category=None, extension=None)
	# u'illum.csv'

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

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

::

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

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

	fake.tld()
	# u'net'

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

	fake.url(schemes=None)
	# u'https://www.miller.com/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'post'

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

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

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

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'davidwilson@hall.org'

	fake.domain_name(*args, **kwargs)
	# u'jones.biz'

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

	fake.domain_word(*args, **kwargs)
	# u'york-alvarez'

	fake.slug(*args, **kwargs)
	# u'illum-eaque'

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

	fake.company_email(*args, **kwargs)
	# u'millerdennis@hudson.com'

	fake.uri()
	# u'http://www.callahan-ward.com/index/'

	fake.ipv6(network=False)
	# 'bba0:2a9d:39f9:8e8f:ce36:6b12:f577:8c5c'

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

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

	fake.mac_address()
	# u'ae:6a:97:b7:1f:9d'

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

::

	fake.isbn10(separator="-")
	# u'0-653-25527-6'

	fake.isbn13(separator="-")
	# u'978-0-442-63247-2'

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

::

	fake.job()
	# 'Trade mark attorney'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Facere voluptatum veniam iusto distinctio eligendi assumenda ullam. Tempora temporibus laudantium cupiditate corporis fugit. Repudiandae praesentium mollitia accusantium.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Doloremque velit ipsum dicta possimus. Eveniet veritatis laboriosam consequuntur quia. Saepe dolores dolor nihil cum voluptatum consequuntur.',
	#     u'Illum voluptatibus in illo est. Praesentium odio ab nisi. Quas optio placeat.',
	#     u'Voluptatem labore accusamus ab sapiente. Quibusdam numquam amet laudantium labore ea vel.']

	fake.words(nb=3, ext_word_list=None)
	# [u'consequuntur', u'et', u'libero']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ad eaque eius accusamus itaque ex totam.',
	#     u'Aperiam quae eos saepe saepe.',
	#     u'Ad vel repellat facere.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Sed sed ab exercitationem exercitationem.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Vero dolorum dolorum laboriosam.'

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

::

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

	fake.locale()
	# u'or_IN'

	fake.binary(length=1048576)
	# bytearray(b'S\xbcI$t\x1a(\xe0V\xc8\xf1\xff\x9f\x1a\x11\x15vh7\xb5_\xf4\xd4BM\xa8oR\r\xae\x10\x9f\x9a;(\xe3\xb1OA\x05\xdd\x15\x86m\x81\xd8\xf1\xda,G\x92\xa0\n\xd7AA\x91\\\xb8\x00U.\x9f+r"\x1c\xfa\t\xc0\x08\x9a\x06\x81o\xb4\x1cqQ\x9b\x88\\\xa9\x00\x90\xf0\x9e\xdbCQ\xaa\xc6{Y#\x04\x9e\x99\xcbw\xfb&bd\x88H+\xfd\xb5\x84k\xbbuJ\x10\xcd\xd5\xaauK\xe71\xae6\xbf\x9c\xb8\xb3jG\xda\xd1?\x80\xe6(oc9\xcf\xcf\xecF\x8a\xa7\x0f\x82\xe3\xeb\xe5\x8d\xf9\xb9\xf1\x169\x1f\x1dY\x11\x8c\xbd\xe5~Il\xe8@>\x8c\x02\x90\xffP@\xea2\xd4\xdc\xf0\xfdL\xa4\xc8\x0c\xe9\xad\xc2\x05l\xca\x97D\xe7B\x80^\x92\x0c\x1e\xafqK\xb7\xdbs\xe9_\xe7\xe2TR\xc4\xdbWj\xcdd\xbf\x84\x8d\x82A\x18)$\xa2\x0e\x87\x9c\xde\x81\x9dvxe\xb4\xff\xdd\x82\xce\xba\xa4\xedX\xd1}c\xe8\xb7\x8e\xdc\x9be%\x8a\xdd\xc2A\x95\x07u{*\x9fBX1\xea\x07)\xfdC\xb7\x10\x95\xc3\x9e\x18mC0=\xb7\x8c\xea:\x87\r+\x12Y\xefw\xc3\x9b\x12&E\t\xc9\xbb\xd0\x13n\xb11(\xa0ry\x94<\x9a\x94.\xc1\xad\xde\xf9,%J\xd6bQ\x14\xddg\xa8 \x01\xd1\x0b\x07\x84\xa65\xa2\xcc\xd7:b\x174\xcb\x92c\xa4-\xaa}gr\xfa\xe2n\xe5_\x07\xdc\xcf\xa31M\xdf\xe5\xa1\xf3\x8c\x9ef\t\xc1Z{\xd5\x9a\xba-\x8a\x18e\x99C\xf8\xd2\x1f\xa6\xd9N5\xf63\x8a\xe6\x82\x9e\x8dZ\xd2\xd7\x1d>\x17\x83b\xcc\x0c\xfe\x9dE\xf2\x04B\xea^\xa3\x19\xa3#X>u\xad\x19\xb9\x98\x83\xac<~.\x13\xf0\xbb\x90\x18B\x02_\x8aZ\xbc\xcft\xae#\xf2"e\xe1\r\x8eV\xe6\xae[\xc9|S\xd4\x99\r:\xeb\x16n\xea\xa5a=q\x10\xa29\x0b\xbd\xb4\xde\x10z7\xad\xa6\x8d\x81\x86\xd7\xa1\\\x96\xdc\xebH\xa4HD\\\xf7\x94\xfb\xdd\rL\xc6\xf550Hw&\xd6@O\\\xfc\xb1\\\xa1\x9b\xde\x84\xa4I\x17\x93\xd4\xd2\xde"\r\xdf\xca\xa4\x10\xfe\x92\xa5\x8b(/\xf2\x1e\x8f\x07\x02\xd5\xd5l5\x8c\x11\xb5FXBk\xaa\x08=\x8c`~\x91\xc5\xcd\x1b@\xf3\xb1\x83\xf4\xb1>\xf5$ \xf8\xa9\xe3rO\x1c\x7f\x06\xcd\xe0|\x0f\xd4\xaby\xe1#\x0f4\xb9\xd7\xa4N\xc9v\xf6A\xb4t\xfa\xc4\xb1X\xda\xd4\xff\xb3\xbf\x8b\x82ov\xe8\xc6\x1d\xbe<e\xfbv4\xac\x91\xf0\x1ak\x8b\x90<\x93\xc1^m;\xba\x95\xce\xa8\xe4!z\xd7\x18=\xc6\xf4\x84\xc6\x03\xb5\xbc\xc7\xe6_W\xc6\x99\x9b\x7f\xbd\x945g\xad\x8ae\x82F]\xeb&\xa1.\x01\xcc\xed\xd6> i\x86dn1\x8a\x86,b\xa7\xc1\x9dx\xcc\x82\xaf\xbabl\x0c\xbc\x92\xd0\xfeB\xeb\xde\xeb\x1bA(\xf8\xdf\x8d&\xf8\xc8Hr\x89\x8e\x81\xc0\x8d\xcf\x80\xa3\x8fQ\xea\x9e\x82\x1f4\xeb\x1b\x9bKR\n\x88f\x9c\x0f\x9c>d\x93m$\x1a`\xc4\xb5\xdc\xea\x91\xf3\x89 -7\x8e\xee^\xbfW\xfc\x83\xaeX\xd5\x08u\xc9g\x13\xfd\xefn\xa7H:\xe5\x9f\r\xe4r~\x15\xfaw\xd5\xe9\xef\xe5\x9b5$\xfa\x9fs\x91\xcd\x80Has6\x8eiI\x867\x97\x8c->\xf1G\xe6\xd5\'\x12\x9f\xdc\xa2G\xda\xe4E\xde#\x9c\x9a\x8a\x9aE\xcd\'\xe5\xcd\xb8YzE\x02\x91..\xedK\xe5\xa8V\x02\xf8A\xda\x82/\xc9\xbdUB\x07\xb7\xdb~\xed\xbe\xccwr\xb7\n~;\xefp\xebf4m\xc3\xc4\x9b\xb0\xbd\xd8\xb4q\x86\xe0\x9d"Zq\x9c\xf3\x1f\x16\xe6,\x18jmM\x9bX\xc5\xb5{l@\xb3 B\xbc1\x1d$\xd9=#+\xf2\x18\xaf\xd0\xf6i\x04\xc9\x0fi\xd0\t\xb2\xb7`9]\xb7\xee7\xd1\xb9\xbah\xdb\'\x0c\xa3"_Q\xf3\xa3<+\x92\x0e\x1f2\x0f\xdf\xf8n\x9a\xa8\xf3\xea\xa5\xb1\xcb\xe2q\xf4\xe4~\xb2e\x97\xce+S\xb4\xfd\xb9\xd2\xb7\xee\x16\xfa\xb2\x0e\x81\xaa7\xa3\xc9L\x07l\x02L;\xbd:y\xbc\xd3\rt\xde=')

	fake.md5(raw_output=False)
	# '3cf5d2ace9f168dd0898c6fe50e5e5a7'

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

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '5c3c9f8a5621f88304eff8d895d0342beda684625ed5c3f2204a6b1e1a61752a'

	fake.uuid4()
	# '1b32fce6-a661-3aa8-45d4-224e2731b511'

	fake.language_code()
	# u'kl'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Parker'

	fake.name_female()
	# u'Dana Sanchez'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Monique Cochran'

	fake.suffix_female()
	# u'DVM'

	fake.name_male()
	# u'Charles Robinson'

	fake.first_name()
	# u'Robert'

	fake.suffix_male()
	# u'MD'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Michael'

	fake.first_name_female()
	# u'Diana'

	fake.last_name_female()
	# u'Todd'

	fake.last_name()
	# u'Griffin'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'992'

	fake.operator_id()
	# u'4'

	fake.cellphone_number()
	# u'+962787962523'

	fake.telephone_number()
	# u'+962 5 932 6413'

	fake.area_code()
	# u'3'

	fake.service_phone_number()
	# u'1254'

	fake.msisdn()
	# '1721897410555'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'PSC 3724, Box 0826\nAPO AP 28733',
	#     'birthdate': datetime.date(1980, 11, 25),
	#     'mail': u'davisjustin@hotmail.com',
	#     'name': u'Paul Higgins',
	#     'sex': 'M',
	#     'username': u'davidwoods'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'50401 Price Wells Suite 187\nWest Michaeltown, FM 23215-1455',
	#     'birthdate': datetime.date(2016, 5, 21),
	#     'blood_group': '0+',
	#     'company': u'Sanchez PLC',
	#     'current_location': (Decimal('40.723447'), Decimal('-138.645575')),
	#     'job': 'Psychotherapist',
	#     'mail': u'richardmorales@hotmail.com',
	#     'name': u'Kevin Small',
	#     'residence': u'211 Lopez Mill Apt. 048\nLake Amanda, MA 51818-8864',
	#     'sex': 'M',
	#     'ssn': u'330-09-0364',
	#     'username': u'sandragoodwin',
	#     'website': [u'http://greer.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(1986, 12, 14, 19, 24, 47),
	#     u'IdyrbOZSjfedLXoKvtfz',
	#     2171,
	#     u'SyNQfDswFlfoHbbYkcOq',
	#     7449,
	#     u'xJCYdwfuCTSnDRgkPBKy',
	#     u'yNVccsYQjiDsRGQdbtrS',
	#     datetime.datetime(2008, 11, 25, 15, 46, 2),
	#     datetime.datetime(2018, 5, 28, 8, 14, 2),
	#     u'http://cooper-perry.com/author.htm',
	#     9937,
	#     u'xZgVGRRluIZRAOBrglBP']

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('8.73042167891E+12'),
	#         u'AjmKsfbVjDjvHDIAbAxE',
	#         u'http://lucas.org/main/',
	#         u'yaFUTTzbpAIGgzUsEqiI',
	#         4453576.7517,
	#         u'lQQpAQdHVvVRHhUgFYyW',
	#         2863,
	#         u'hqZOqUicpLXSGjMBPwZX',
	#         datetime.datetime(1995, 3, 8, 11, 28, 33),
	#         8258],
	#     {   u'alias': 2175,
	#         u'dicta': 3083,
	#         u'ipsam': u'http://young.com/app/post/',
	#         u'maiores': u'CQMsTucnBVGagRgtIzIT',
	#         u'natus': u'mHmjZtbUObilZKsLUhTb',
	#         u'perspiciatis': -3274463232.0,
	#         u'quos': datetime.datetime(2006, 11, 12, 3, 18, 47),
	#         u'sit': u'fDVOcLgtSofhyfiwNkah',
	#         u'tempore': 252694408836251.0},
	#     {   u'autem': {   0: u'david84@farley-wilson.com',
	#                       1: [   u'patricia89@hotmail.com',
	#                              101927545695.9,
	#                              u'bETjRxMwzYOQfNmshlmi'],
	#                       2: {   0: 6233,
	#                              1: u'dbUOzmmHynZxIBMkMwWl',
	#                              2: [u'HvCHMMJaeQkCaGhpUECI', -5366474.68]}},
	#         u'earum': {   8: u'ZNytLtzTVkvWhdniOZRN',
	#                       9: [   u'jonestina@yahoo.com',
	#                              u'qyOUAfUEffbPVTTbkAOl',
	#                              u'VFrkIBhLqBAKpPeZLVLo'],
	#                       10: {   8: u'XvRykkzCBhqnflAGlFCi',
	#                               9: u'XvRZUMRrXVxbvhgWrztA',
	#                               10: [   Decimal('-453.4'),
	#                                       u'iWFcZKjOkjfANmPBZmfx']}},
	#         u'et': {   5: u'steverandolph@taylor.biz',
	#                    6: [   u'bPksJzEilbsqPcICgNPz',
	#                           6591,
	#                           u'http://thompson.com/'],
	#                    7: {   5: datetime.datetime(2013, 3, 11, 14, 51, 58),
	#                           6: u'http://cain.com/homepage.html',
	#                           7: [   u'jPebvHqYtslRzrLNlahn',
	#                                  u'XsqgvFMjiCHfwZtfVkiU']}},
	#         u'impedit': {   6: 3118,
	#                         7: [   datetime.datetime(1980, 3, 9, 20, 17, 44),
	#                                u'NBPrRsfXlOodGtYHfzAs',
	#                                u'OhGKwAILqhoMpFlTATXf'],
	#                         8: {   6: u'WMuBsyMTgJecqlUCYhvG',
	#                                7: u'xMKJiYGtvkIqUiHizDSf',
	#                                8: [   Decimal('-380.78078481'),
	#                                       datetime.datetime(1991, 9, 9, 14, 33, 2)]}},
	#         u'molestiae': {   3: datetime.datetime(2008, 11, 28, 2, 20, 32),
	#                           4: [6991, -885717309.362, 381762.727379],
	#                           5: {   3: u'omarshall@hotmail.com',
	#                                  4: 5471,
	#                                  5: [8931, u'aCBtASGXzIEGsiJMndgK']}},
	#         u'odit': {   2: u'SszXgqOJrVSrpLKghgDI',
	#                      3: [Decimal('721.758735'), 5526, 1995],
	#                      4: {   2: u'zpHaDtyJJKiLbGkxMRec',
	#                             3: u'vmDQhGXLRnQoNZjyiuUJ',
	#                             4: [5216, 7322]}},
	#         u'pariatur': {   1: u'keHBxiKQKuCYTVtcLVvU',
	#                          2: [   u'http://burton.org/category/',
	#                                 u'ElwxhMWbwrdnnyEvyLLT',
	#                                 u'vnHubKkJgTUOqNyGESzp'],
	#                          3: {   1: u'KJSlmapehjDFvSiLgbqd',
	#                                 2: u'kXabCvMykJzktZRBxhaD',
	#                                 3: [u'yovbaqlKNogTKnfygeRy', 150849111.367]}},
	#         u'ratione': {   9: 4285,
	#                         10: [   18768625050.216,
	#                                 u'vcnJqAMtZIAYmuXKpmaI',
	#                                 391069324.2],
	#                         11: {   9: u'EnpfJEwMSNTTFCOEOfNP',
	#                                 10: 4723,
	#                                 11: [   datetime.datetime(1988, 6, 23, 22, 34, 41),
	#                                         u'rBVBtOTQnJXunVdOUOFv']}},
	#         u'tempora': {   7: u'VUmHqMGPHSWZnQEuPRzn',
	#                         8: [   u'EJOcpZEabvooaIyFnlwB',
	#                                u'http://romero.org/search.php',
	#                                datetime.datetime(1978, 3, 18, 23, 42, 39)],
	#                         9: {   7: Decimal('-939.5197584'),
	#                                8: -567195666313.0,
	#                                9: [   Decimal('-24648313.9105'),
	#                                       datetime.datetime(1992, 10, 29, 16, 6, 17)]}},
	#         u'totam': {   4: u'XGSdjbVTKHIcYKUSnbrU',
	#                       5: [   u'aXCpwHNDNGldTpsnlyNJ',
	#                              u'jphNYZaqzFGnvqsAinoG',
	#                              u'rodriguezandrew@lamb.com'],
	#                       6: {   4: 45.77,
	#                              5: -968551634949.657,
	#                              6: [1650, u'tBOSgLJsVIDzHFMyYFqS']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(1994, 12, 4, 20, 28, 17),
	#     2653,
	#     Decimal('3309458.70904'),
	#     399,
	#     u'ZOOWMfjfYRxhGutqjyUl',
	#     u'https://schultz-yang.com/main/category.asp',
	#     u'HBJaGiDgSzUjuJxQICOf',
	#     7304,
	#     u'BZtLGSudVqEwGgwTzkIm',
	#     u'xQiWWvNYmBLoUIwdShPj',
	#     3527]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'sLAvjLmorQpQBowpUDfZ',
	#     u'sgqnkUxumRfSgknmSEtI',
	#     u'averyrichard@brooks.com',
	#     u'mEgqpjqhmjNlrscToirS',
	#     Decimal('2.6'),
	#     datetime.datetime(1987, 3, 28, 1, 49, 54),
	#     u'dJhPjKalNRUtNrRWnxqk',
	#     u'megannewton@moreno-rubio.com',
	#     u'djordan@guzman-miller.com',
	#     u'SHYBpWJazzEZODSeHORn',
	#     u'elqOjxfsyecmADZbpRTr',
	#     Decimal('-495678055543'),
	#     u'CFAXzHdnsThRUiAuSrZN')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime.datetime(1973, 2, 1, 21, 30, 36), Decimal('8.94500085817'), u'http://www.jackson-garcia.com/', u'ugWytKFvEEqLIOYgTYvk', u'https://cabrera.info/blog/register/', u'https://lucero-howard.com/category.htm', u'awilliams@gmail.com', u'dUdYwiAyHhXZaNvXPTko', Decimal('7.6413405309E+13'), 1212])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ab': u'wWyedwOSkThrkLZfzbyr',
	#     u'at': u'JuZWftkBGOFRYJoNMayD',
	#     u'deserunt': Decimal('58812196878.0'),
	#     u'dignissimos': 6626,
	#     u'ipsam': u'XzNUWVCrrTXsxkrsmKCl',
	#     u'molestias': u'https://www.gordon.com/tag/posts/app/privacy/',
	#     u'placeat': u'vYhltdyLsRCRDcOTbaxi',
	#     u'quam': u'qMMojHxLkzpBfEEJbqpu'}

	fake.pyint()
	# 7750

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'377-36-1392'

	fake.ein()
	# u'98-9734391'

	fake.itin()
	# u'926-71-9230'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; yo-NG; rv:1.9.2.20) Gecko/2018-08-11 01:29:20 Firefox/3.6.16'

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

	fake.opera()
	# u'Opera/9.80.(X11; Linux i686; bo-IN) Presto/2.9.168 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/52.0.883.0 Safari/5331'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/38.0.878.0 Safari/5321'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; tg-TJ) AppleWebKit/532.35.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6532.35.3'
