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

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

::

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

	fake.building_number()
	# u'17098'

	fake.street_address()
	# u'02963 Jennifer Courts Suite 815'

	fake.postalcode_plus4()
	# u'68115-7963'

	fake.city_prefix()
	# u'Lake'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'Victoriatown'

	fake.zipcode_plus4()
	# u'77303-6257'

	fake.state_abbr()
	# u'SD'

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

	fake.street_suffix()
	# u'Orchard'

	fake.city_suffix()
	# u'shire'

	fake.military_dpo()
	# u'Unit 1480 Box 5868'

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

	fake.country()
	# u'Kuwait'

	fake.secondary_address()
	# u'Suite 751'

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

	fake.postalcode()
	# u'16402'

	fake.address()
	# u'82348 Kenneth Island\nMckinneystad, PR 52321'

	fake.state()
	# u'Washington'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Williams Pines'

	fake.zipcode()
	# u'39382'

	fake.postcode()
	# u'09622'

	fake.military_apo()
	# u'PSC 2122, Box 0786'

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

::

	fake.license_plate()
	# u'8-28631'

	fake.initials()
	# u'44'

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

::

	fake.bban()
	# 'QSWF2247195549231'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB46BBMM6864093565232'

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

::

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

	fake.ean13()
	# u'6458845910673'

	fake.ean8()
	# u'42597889'

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

::

	fake.rgb_css_color()
	# u'rgb(76,207,84)'

	fake.color_name()
	# u'YellowGreen'

	fake.rgb_color()
	# u'255,239,13'

	fake.safe_hex_color()
	# u'#773300'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#b43626'

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

::

	fake.company()
	# u'Hicks, Houston and Hurley'

	fake.company_suffix()
	# u'Group'

	fake.catch_phrase()
	# u'Pre-emptive content-based model'

	fake.bs()
	# u'exploit dot-com systems'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nJames Allen\n4013674891511809 08/19\nCVC: 172\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'GRC'

	fake.currency_code()
	# 'GGP'

	fake.currency_name()
	# 'Zambian kwacha'

	fake.cryptocurrency_name()
	# 'TRON'

	fake.cryptocurrency()
	# ('SRN', 'Sirin Labs')

	fake.currency()
	# ('SAR', 'Saudi riyal')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 7, 3, 6, 57)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2019, 5, 15)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1990, 5, 7, 1, 34, 34)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2010, 2, 22)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 5, 0, 34, 42)

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

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 11, 2, 20, 35, 35)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2005, 5, 7, 3, 26, 20)

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

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2019, 5, 15, 4, 20, 43)

	fake.date_object(end_datetime=None)
	# datetime.date(2012, 3, 16)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1995-02-20T22:20:19'

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

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

	fake.month()
	# '12'

	fake.year()
	# '1980'

	fake.day_of_month()
	# '05'

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

	fake.timezone()
	# u'Africa/Monrovia'

	fake.century()
	# u'VI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1967, 12, 8)

	fake.time_object(end_datetime=None)
	# datetime.time(1, 57, 1)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 1, 17, 14, 50, 30)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1980, 3, 16, 1, 9, 36)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '15:00:56'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 4, 27, 7, 9, 12)

	fake.month_name()
	# 'March'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(562, 5, 21, 17, 42, 48)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(11634, 61766)

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

::

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

	fake.mime_type(category=None)
	# u'multipart/related'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/aperiam/dolorum.js'

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

	fake.file_name(category=None, extension=None)
	# u'molestias.mp3'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'codyburns@hotmail.com'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'sparkskristy@ramos.com'

	fake.url(schemes=None)
	# u'https://dennis-young.net/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'home'

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

	fake.safe_email(*args, **kwargs)
	# u'nbrown@example.org'

	fake.ascii_email(*args, **kwargs)
	# 'andrew97@adams-taylor.com'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'cameronross@ramsey-moore.com'

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

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

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

	fake.slug(*args, **kwargs)
	# u'culpa-quod-neque'

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

	fake.company_email(*args, **kwargs)
	# u'tammyclark@becker.com'

	fake.uri()
	# u'http://horton.com/privacy.asp'

	fake.ipv6(network=False)
	# 'f058:e2f0:1895:f8e4:35a8:16d9:c046:1a2f'

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

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

	fake.mac_address()
	# u'6c:d3:46:d0:5b:8c'

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

::

	fake.isbn10(separator="-")
	# u'0-278-03678-3'

	fake.isbn13(separator="-")
	# u'978-0-290-81166-1'

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

::

	fake.job()
	# 'Sports therapist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Doloribus itaque voluptates cumque quo fugit. Maiores assumenda iste omnis. Odit qui nobis accusamus.\nNihil sint aliquid adipisci.\nIure reprehenderit magni molestiae.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Est repudiandae cum possimus iusto eaque excepturi architecto. Officiis porro impedit veniam itaque a. Perferendis cum accusantium sit ducimus.',
	#     u'Eum molestias quod commodi. Nesciunt placeat dolores dolorum maxime similique dignissimos. Illo omnis sequi.',
	#     u'Laudantium dignissimos cumque nihil mollitia nisi voluptas quaerat. Exercitationem voluptas voluptate ullam commodi cum aliquid. Aperiam molestiae optio animi repellendus animi similique. Fuga error laudantium molestias itaque provident exercitationem.']

	fake.words(nb=3, ext_word_list=None)
	# [u'iste', u'fugit', u'maxime']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ipsum pariatur velit animi.',
	#     u'Quis harum corporis modi iusto consectetur distinctio.',
	#     u'Neque magnam dolore ab unde consectetur ea.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Hic corporis modi labore. Harum optio beatae quo. Doloribus accusamus voluptatibus quis ullam.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Ut perferendis iste.'

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

::

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

	fake.locale()
	# u'it_CH'

	fake.binary(length=1048576)
	# bytearray(b'\xbfM\x8e\xf1\x93\x06\x88\xb7\x01\x19 \x07{\xadd\xa5\x9fI\x1bu\xb8\xdf\xe6\x86f\x97\xa6\n\x1b&\xec\xbc\xacal\xcc2^\xeeT\x8d\xcf\xf7\x99\xea\x9e\xb3\x05\x84\xb6m`\xeb\x9f6\xcf\xa7\xde\xad\x95l\x13\xaa\xd3\xec\x04\xb5*0n\xf6\xa0\x89\ti\x8c\xa7\xdfH\x84\x0e\xbe+i\x88\xac+\x86E\xb5\x14T\xc8\xde\x167\x00e\xc4\x8cGO6\xf0L6\x1e\xa2C#\xda\xac\xd81\xb2\xd8\xb7\x9b\xbc\xb9\xad\xc0m\x14\x97\x86C/\xa3\xecT\x17\xf7Z\xdc\x82XI\x05\x92\x12\x8c\xda:\x1b\xf9\xaf3\x99\xdf\x92v~\xff~\x89\xd3"\xf4c\x19\x11\xcb\x03\x14\xcf\xf1Z\x10\x8c\x0c\xc1\xa3\xf1\n\xfd\xde\x1cS\xc7\x86\xdc\xaf\x8a\xb7\x9cE\x02\x03\n8&]O\xe1ao|\xa3\x8bhq\x00\xf6\xac\x1f\x01\xb2\xcb\x16\xbbo\xd3\x1a\xaa\xee\xaf\xaf\x06qNL\x96H\xf8\x986OJ/\xbes\x03\xd5\xbd{\xa0\xd73\xc2F\xfd\x0e8E\xabtYS\x0e\x02\x9c\x86\xe2\x19\xad4\xce*\x17\xcd\x9dp\xfei^\x05\xc2\xd3\x00\xf6\x9eK\x04Z\x1a7 G\xa42\x8c\x97m\xd1t\xbf\xf0~M\xa3\xbe\x19\x98n\xf7C<E-\xec\xee\xd5\xc0G\xe1\x05\x8f\x08|m\r2\xa2l\x83\x1f2a\xc9\xf4\xac\xd7\xd5a\x86GU\x93n\x8ay\xb9\xc7\x0c\x91_\xae\xf5\xba<Y5\xceD\xfai\xa2a\t\xa0\x0f\x84e\x0em+\x1e\xb0u\x99\x15l\xb9\xcd\xdf\x12]\x03\xb6\x17wiE\x92 8\x08\x15\x1a\x100\xbag)p\x99\xf3L\xa3\x99\xce\x84I\x8e\xfd0\xbb\nzX\xa0\xfc\xf2\x1a\x0cz\xe9R\'\x04\x8a\x1eq\xa7\xcd\xd6x\xc2|\xccW\xa8 \xd6\x97\x94\xce^W\x05\x13\xc2b\x8f\xea\x18\x94\xf8\x89\xbb\xb3\xd6\xb4\x03$fv\xb9\xc2%G\xf9\xf8\x9bs\xb5\xc1%Rjq\xd7\xb4wP\x97\xcfC\x1a\xcd{\xc5\x97^K-\xfa\x808\xff\x84\x95\xb9C\x9c\x84\xe9\xa3fq\r\x04_\xa6\x11\xd9\xc3s\xc0G!\xd9\xda\'S\xc1^r,\xb5\x10BZ\xd54\xff\xad\xfd\x89\xa1\xba`\xa1Y\x06\xacD\xd2\x08t/\xb8L,\xb9\xd4\xb4\xbeh\x19,\xfd\xc6w\xd8\x1b\x12|\x98\x82\x8e\x0b\xcb\x1d\xe2eB\xd5\xff\x84\x05\xe1L\x8753P\xdc\xf4\x81\x93=\xedc\x12\x04\xd4\xf2\xcf\xfc\x88\x15G0\'\xd6\t\xb3\xd0\xa5\x90b\xcb\x8b\xd7\xac\x82\x87\xbf\x8df4\x94\xcf\xf3O\r\x86\xef\x1fsM\xba0\xb5\xbeM\xa96\xc7$6Hn\x04z%\xd32T\xcc\x19\x00\x93\xd8@A\xfaH\xf6\xf8\x86\x12]x\xd9&\rTd\xba46jD\x1aI\'\xf8g9\x07\xbc\xf9X6\xe1\xa7\xea\x13p\xff\x1f\xbf}%\xc6\x1b,.\xe0\x88\xe5\xb1\xfdgJ\x911y\xb3I\xfb\x92\xfa\x16\xe0t\x02\xa4>\xd8\xd2\xbd(\x1aJn\xb7X\x11\xa18k\xc9\xb1\xb6\xfd\xa7k(\xe2\xd5\xb7_\xc4_\xef\xbah\xfa\xca\x03\x87\xbc\x8f\xdey\x97\x90\x92\xe8\xe1/@\xeb=\xc3*\xaca\xedcJL\xef\xf56\x1b\x0f\xee\xc7\x8fq*\x93\x8f\xfeN~\xcb\xd0\xe2\x19/\xe3B\xfc\x86%\x01De\xa2\xb8}\x01\xbc\x1c|\x1f\xd6zaa\xcb\xfe]B]\x07\xf5^2\xa5\xb9\xd3\x18\x92\xe0\xd4\xcf\x98\x12^\xaf4\x9e\xdf\x8f\xfc;\xf8\x1aH\xd7\x93\x8cMm)\x00\x00b\xf7\xf3(2\x9eC7\xf8\xbcD\x18\xed\xe6\xca\r!O\xf2\x1e\x1c3+\x88|\xd8\x83\x14\xd6\tC\xd7\x96!\x81Sb\x9d4\xf6\x13\xda\xeah.\xa3\xb5\xac<\xe0\xedV\xe6tB\xa5\xc4w\xb7\x82\xe5%\x95z6!\xf4\xf9\xcd\xacZy\x1b\x00\xad>\xab\xd8u`\xf4\xefJ\x03f]BK\xf2\xa7v\x10\xf9(\x9a\x8c\x1d+5\x91\xe4\xda\xf1\x1c\xdb\xdc\x80\x8b\x9b`8\x8d\x07mG7\xd0\xa6\xbf\x89\x7f$\x8a\x86~\x1fI\xfe\x10\xae+3\xaa\x99\x10\x80\tqH\xe4)\x0b\xde\xb4\xaf\xa8\n\x07Xse\x0b)#\xbf)\x05oZ\xc2w\xcd \x9d\xe3\x84(L,\x19o\xb9\x82\x01\x90\x9c\xa2Vv\xb7Y\xd2\x89\x00ni\xf4_\xbc\xe3')

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

	fake.sha1(raw_output=False)
	# '343ac17972d577c8e537d8a78b46c90f0461a48b'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '544912b9d95306ae3a6e254f88c20f10f74c74e35558696c038665275400ce63'

	fake.uuid4()
	# '00fc9533-8b2b-01c8-c8d7-caeb6241413c'

	fake.language_code()
	# u'mr'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Hale'

	fake.name_female()
	# u'Laurie King'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'David Pena'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Thomas Wolfe'

	fake.first_name()
	# u'Joseph'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Craig'

	fake.first_name_female()
	# u'Jennifer'

	fake.last_name_female()
	# u'Miller'

	fake.last_name()
	# u'Ramirez'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'06 725 2539'

	fake.operator_id()
	# u'7'

	fake.cellphone_number()
	# u'0743157444'

	fake.telephone_number()
	# u'+96232447274'

	fake.area_code()
	# u'3'

	fake.service_phone_number()
	# u'1477'

	fake.msisdn()
	# '9082949358426'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'592 Davis Forges\nEast Craig, ME 71726',
	#     'birthdate': datetime.date(1921, 11, 7),
	#     'mail': u'kennedywhitney@yahoo.com',
	#     'name': u'Angela Thomas',
	#     'sex': 'F',
	#     'username': u'harrissarah'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'74787 Tyler Springs\nLake Andrewfort, OH 15024-1763',
	#     'birthdate': datetime.date(1958, 5, 13),
	#     'blood_group': 'B-',
	#     'company': u'Munoz-Wong',
	#     'current_location': (Decimal('89.5790645'), Decimal('-162.891269')),
	#     'job': 'Sports therapist',
	#     'mail': u'william63@yahoo.com',
	#     'name': u'Damon Harris',
	#     'residence': u'4587 Kelly Meadows Suite 211\nPort Kathleen, MO 61243-3099',
	#     'sex': 'M',
	#     'ssn': u'265-77-8237',
	#     'username': u'lori55',
	#     'website': [u'https://www.bernard.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'FEzCjjjczsxlFkpQttGs',
	#     u'cRuyBjrMeecBQtydexLO',
	#     5022,
	#     -52179.514,
	#     9019,
	#     u'http://www.owen.net/category/tags/author/',
	#     -597305.923182,
	#     u'RWZBknUtSAcxBdVQzEZk')

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

	fake.pystruct(count=10, *value_types)
	# (   [   2311,
	#         1489,
	#         Decimal('551.852841637'),
	#         4645,
	#         u'https://www.stone-hopkins.com/list/category/post/',
	#         u'avDhdpzSSDDFckZcIWYy',
	#         u'onzDcBkBzNDosUGWDJfr',
	#         u'LpxtYqhhTvitdPsLcyjk',
	#         -370945.8847,
	#         u'http://www.sanders.com/main/wp-content/terms.htm'],
	#     {   u'aliquam': u'bCRyNwbFgcYrhPNkTRqD',
	#         u'distinctio': u'UgchzAZifkyljniqgqAu',
	#         u'laudantium': u'rkramer@hotmail.com',
	#         u'nisi': u'PsbzRtCCTJmYBGhhoUNn',
	#         u'nobis': u'benjaminmay@gmail.com',
	#         u'praesentium': u'iJVZRdILmgzaTrfNxFbj',
	#         u'quibusdam': -625.11208,
	#         u'tempore': u'ZaTWfFdWYaHfGzedmRSH',
	#         u'velit': u'pwhite@morris.com',
	#         u'vero': Decimal('5647316.4595')},
	#     {   u'accusantium': {   0: 850813370084.0,
	#                             1: [u'QxxPEOCXsnukdbjSEPvz', 8746.2758, 3144],
	#                             2: {   0: u'UWKTYTmLcHIWSbOKpqzn',
	#                                    1: u'LiulZwyjkkFSNkSctoGj',
	#                                    2: [   datetime.datetime(2003, 10, 25, 23, 38, 52),
	#                                           u'QtgwGVJOQNcfHTtTZxBb']}},
	#         u'architecto': {   7: 3.911471586,
	#                            8: [   u'robert03@gmail.com',
	#                                   -1322721105811.95,
	#                                   u'DDUnHsyEhotsIUKGiFhc'],
	#                            9: {   7: datetime.datetime(2001, 4, 7, 20, 20, 5),
	#                                   8: u'XCtHcYShbFbemPhYGlow',
	#                                   9: [   Decimal('-97.68013848'),
	#                                          u'rebeccacruz@hotmail.com']}},
	#         u'error': {   5: 92902725.58,
	#                       6: [   u'jason19@davis.com',
	#                              datetime.datetime(2001, 1, 13, 19, 59, 12),
	#                              u'hrJvuLAhAomiZCPzbXUz'],
	#                       7: {   5: 1613,
	#                              6: Decimal('-39967269.976'),
	#                              7: [   u'https://oconnor.com/tags/tag/tag/register/',
	#                                     u'https://www.fisher-duncan.com/terms.htm']}},
	#         u'excepturi': {   9: Decimal('447.411559482'),
	#                           10: [   u'shannon19@yahoo.com',
	#                                   u'xwhChVcchMRkWMbfLbGm',
	#                                   u'lMMfWAVvVYXHiOHKsaMU'],
	#                           11: {   9: -6.713,
	#                                   10: -8.90808891333,
	#                                   11: [u'lvqryMwUTFAXRwjqZMhA', 5198]}},
	#         u'iure': {   8: 311,
	#                      9: [   u'VtxxbXeoAzTklZHPYTRi',
	#                             9028,
	#                             u'DVvUwdEFVaTTxJIUyEjx'],
	#                      10: {   8: u'obcDMzvNJzbfDLziqzfb',
	#                              9: datetime.datetime(2006, 1, 17, 10, 16, 9),
	#                              10: [   datetime.datetime(1984, 11, 4, 20, 18, 16),
	#                                      datetime.datetime(2009, 11, 25, 10, 55, 46)]}},
	#         u'neque': {   4: u'pohbSrmNowrTuBBBEoRP',
	#                       5: [   219,
	#                              u'uKhmxYXTbxRsOcHSXMwv',
	#                              u'mFSXcqlINxKWFGOEqeXq'],
	#                       6: {   4: 5034272440.4,
	#                              5: datetime.datetime(2013, 3, 8, 3, 0, 12),
	#                              6: [u'RTnYPEEcHIsHcJEURlzT', 719]}},
	#         u'sint': {   2: 8582,
	#                      3: [   1505,
	#                             u'aZXisyCAEETloLJzBxEA',
	#                             u'jjJFnOdpMCfJCxLZKFUI'],
	#                      4: {   2: 8273,
	#                             3: u'alWyjaGuskrBwmxNtZuP',
	#                             4: [7857, -8503.276741]}},
	#         u'tenetur': {   6: u'amKgOcxhGVDLELJUbHLa',
	#                         7: [u'hkKBXbsxxTinWOfNaNaR', 3115, -57889.2880007],
	#                         8: {   6: u'tatmjJtIkSGeKcygVbTb',
	#                                7: 8361,
	#                                8: [   u'http://www.marshall.com/tags/main/home.htm',
	#                                       u'DiGvdEBZlMbsbzlOQILp']}},
	#         u'totam': {   3: u'YeVvoTTFKpWyfmbvIcQu',
	#                       4: [   u'dmcXBpDZSYeKSuncPrnh',
	#                              u'KxIkMWtwfLcVlfZccWID',
	#                              datetime.datetime(1982, 8, 7, 9, 54, 30)],
	#                       5: {   3: u'rbBFwfvMCGQOkqzslsiO',
	#                              4: u'https://bryant-smith.net/explore/homepage.htm',
	#                              5: [8093, 7932]}},
	#         u'vitae': {   1: u'dennishernandez@yahoo.com',
	#                       2: [7614, 1614, u'https://www.carpenter.com/main/'],
	#                       3: {   1: u'sxNXcqtpSsRFyptWQyeP',
	#                              2: u'dodsonjames@gmail.com',
	#                              3: [   u'xslYXOkmkvKFOIwHMtEk',
	#                                     Decimal('8927922.70542')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'bBJzsfekioAmInBqZUNy',
	#     714,
	#     datetime.datetime(1990, 12, 29, 4, 4, 13),
	#     u'mEaCKXCMfbDXOVFaPMPh',
	#     u'rgYsMuRpmeVmSWwnjdTj',
	#     384,
	#     u'KvPICMmSgztBeEozynLa',
	#     u'yhyVqDLLozEphvhoFrcd',
	#     1977,
	#     600545518415770.0,
	#     Decimal('-180555403185')]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'NEhGxflnycFlXaNoNkfP',
	#     u'iodztTDYyqCyXdwNiHqm',
	#     u'tFphKIKCQSWOSIoIIGFM',
	#     u'harold88@yahoo.com',
	#     0.8524844536375,
	#     u'zBQcPFJJMJltptsbmJHE',
	#     u'YMRvnKJAORhGnifwOVpV',
	#     u'XYjXicNKBUhXLDfmCoWP',
	#     datetime.datetime(2000, 8, 10, 16, 42, 32),
	#     u'https://johnson.com/')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('440097260418'), 5155, 5862, u'buchananscott@kim.biz', u'vspence@adams.org', datetime.datetime(1977, 12, 22, 10, 19, 11), -9524007.234655, 2896, Decimal('22600155098.6'), u'ANsxsxkIfqiAzPIcjFFA', 315, u'fkCeazqetcpalbTBpBSG', u'DpXQNdAeMocdMUVxULdf'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquam': 71419218357283.5,
	#     u'deserunt': -905141.93,
	#     u'dicta': 6072,
	#     u'dignissimos': 4929,
	#     u'dolore': Decimal('-7.94189444226E+14'),
	#     u'explicabo': 5491,
	#     u'pariatur': u'sEJcqETmTWRwDQalYbvs'}

	fake.pyint()
	# 1644

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'203-88-3013'

	fake.ein()
	# u'54-2447468'

	fake.itin()
	# u'996-78-4208'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; csb-PL; rv:1.9.2.20) Gecko/2017-04-03 14:56:29 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.99.(Windows NT 5.2; st-ZA) Presto/2.9.181 Version/11.00'

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

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

	fake.user_agent()
	# u'Opera/8.80.(Windows CE; tl-PH) Presto/2.9.179 Version/10.00'

	fake.linux_processor()
	# u'x86_64'

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

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/533.36.5 (KHTML, like Gecko) Version/5.0 Safari/533.36.5'
