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

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

::

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

	fake.building_number()
	# u'49489'

	fake.street_address()
	# u'7747 Stephens Brooks Apt. 152'

	fake.postalcode_plus4()
	# u'66895-2223'

	fake.city_prefix()
	# u'South'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'Jorgeton'

	fake.zipcode_plus4()
	# u'54455-4828'

	fake.state_abbr()
	# u'PR'

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

	fake.street_suffix()
	# u'Heights'

	fake.city_suffix()
	# u'shire'

	fake.military_dpo()
	# u'Unit 1774 Box 3851'

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

	fake.country()
	# u'Martinique'

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

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

	fake.postalcode()
	# u'11114'

	fake.address()
	# u'8253 Morgan Brook Suite 402\nSouth Alexander, WV 82164'

	fake.state()
	# u'Indiana'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Angela Knoll'

	fake.zipcode()
	# u'08182'

	fake.postcode()
	# u'21576-9487'

	fake.military_apo()
	# u'PSC 3722, Box 3130'

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

::

	fake.license_plate()
	# u'6-77882'

	fake.initials()
	# u'6'

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

::

	fake.bban()
	# 'VYBH4589901867375'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB74APWC9263564881395'

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

::

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

	fake.ean13()
	# u'8685451272279'

	fake.ean8()
	# u'90348457'

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

::

	fake.rgb_css_color()
	# u'rgb(37,70,232)'

	fake.color_name()
	# u'Chartreuse'

	fake.rgb_color()
	# u'242,36,73'

	fake.safe_hex_color()
	# u'#aa9900'

	fake.safe_color_name()
	# u'silver'

	fake.hex_color()
	# u'#f96cc9'

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

::

	fake.company()
	# u'Hooper-Spencer'

	fake.company_suffix()
	# u'Group'

	fake.catch_phrase()
	# u'Balanced methodical orchestration'

	fake.bs()
	# u'monetize synergistic networks'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nGregory Santos\n213144766167521 08/25\nCVC: 246\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'VTC'

	fake.currency_code()
	# 'BTN'

	fake.currency_name()
	# 'Gibraltar pound'

	fake.cryptocurrency_name()
	# 'Lisk'

	fake.cryptocurrency()
	# ('DASH', 'Dash')

	fake.currency()
	# ('NIO', 'Nicaraguan c\xc3\xb3rdoba')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 25, 21, 35, 32)

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

	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(2003, 5, 24, 6, 9, 1)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2014, 7, 24)

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

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 12, 17, 6, 50, 20)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1999, 11, 19)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2011, 11, 19, 11, 55, 18)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2012-02-23'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1970, 5, 30)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1993-09-18T23:38:42'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2001, 3, 22)

	fake.month()
	# '07'

	fake.year()
	# '2012'

	fake.day_of_month()
	# '21'

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

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

	fake.century()
	# u'XIX'

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

	fake.time_object(end_datetime=None)
	# datetime.time(9, 49, 23)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 14, 18, 56, 23)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1982, 8, 11, 14, 51, 53)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 26, 4, 57, 40)

	fake.month_name()
	# 'November'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1885, 12, 10, 18, 26, 40)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(13185, 9157)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/perspiciatis/illum.mp3'

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

	fake.file_name(category=None, extension=None)
	# u'amet.gif'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/144/843'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'cfischer@fisher-robles.info'

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

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'homepage'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'victoriaprice@kelley.info'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'theresabrown@green.org'

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

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

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

	fake.slug(*args, **kwargs)
	# u'culpa-commodi-et'

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

	fake.company_email(*args, **kwargs)
	# u'jon66@taylor-reed.com'

	fake.uri()
	# u'https://weber.net/list/category.htm'

	fake.ipv6(network=False)
	# '3ae3:cb2a:3e73:fc63:26a4:3e8e:8f0a:cefd'

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

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

	fake.mac_address()
	# u'cb:42:c4:a7:c2:ff'

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

::

	fake.isbn10(separator="-")
	# u'0-284-17008-9'

	fake.isbn13(separator="-")
	# u'978-1-72566-672-6'

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

::

	fake.job()
	# 'Office manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Quod blanditiis quas quaerat quibusdam. Eligendi repellat quaerat corporis eius et. Labore deleniti ut eos alias deleniti quaerat.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Vitae provident rem accusamus quos molestias ex. Repudiandae repellendus reprehenderit. Eveniet voluptatibus amet quia.',
	#     u'Sint quae ullam magni tenetur quidem odio saepe.',
	#     u'A debitis laboriosam enim soluta.']

	fake.words(nb=3, ext_word_list=None)
	# [u'tenetur', u'adipisci', u'ipsa']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Iure rerum earum dicta.',
	#     u'Molestias itaque adipisci nesciunt recusandae.',
	#     u'Quas veritatis reprehenderit reiciendis eligendi.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ad sint esse aspernatur accusamus adipisci molestias. Quam hic eaque quasi aperiam.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Nisi molestias excepturi sunt quam numquam laudantium.'

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

::

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

	fake.locale()
	# u'mag_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xb1\xd5BI\xc7Cm\xb1\xff\xc4\xcci-\xbe\xcb\xb8(\xe9_\xb7dC\xc0\x88\xc6\x96,\x00\x92B75\xf5\xc5B)\x02C\x9d\xa0\x8b\x03\x84l\x15\x8cj>\xcbd\x9e\xee\xb7\xf7\xe8A\xeftIE\xb1\x17\xc4\x8f\xb3C\xaa\x0b\x98\x9en\t\x86\x11~Ktv\xcd[~\x07q\xefo\xc0\x97\xbd3\x98\xd7,\x94\xbdy\x992\xb5p\xc6\x10ji\xd9\xc3\xaf%\xcc\x86Qd\x92\xc9\x9d\xbd\x0cR\xba2\xeb\tj\xe5<\xfe\x80\x80h\xda.C.~}GQ{w\x9f\xff\xdb\x99X\xe8\xbf\xff0\x11\xdc\xa0\x05\x04\xc2N\xa3^\xb5x4\xdb\xe8G\x88\x91\xb6j\xac\xceqa\xb1"\xf9\x7f\xb0\xf7\xf1\x81\x8c\x06g\x9b\x00\xd6K%Io3~\xa5Gl\x9e}$\xd2R>\x8be\xa3\x1f\'\x1e\xf1\x819\xbf\x9d\x87\x07\xe3\xa2\x9c\x10\xac2\x12\x94O\x06>y\xaf\'f\xbc\xcav\x8d\x1e,wn-7\xa6\xcdW\xca\xde\x98\x05\x91\x82\x05i\xa4\x97:9D\x13m<\xd7\xc3\x01\xb7vH8\xa5\xc3t\x14\xc2 ,K\xc3\xff\x10\x80\xcf_bvLB^\xbb\xfe0J\x8c\\<B\xbb\xe4#\xe4\xa5\xea\xca4\xd3h\xba\x12=n\x8a\'\x1c_\xe9\x98L\xfe|\x84\x81*\x9c\xf2\xcb\x16\x80\xd7\xac\x0c\xb4\xe8\xb8\x13\xf3:\x10P\xcc\x13\x96Cj\xdb\xf7\xbf\x1a\x14\xe6\x88\x91=\x08e\xfe\x17\xa8=\x80\xacvl\xe8\xb8\x8e\xd2\x19\xfd\xdcf\x8aM\xe5\x13\xc7  \xbc\xad\xe6\xa1\x1b\xdc\xb8\xe7\x03S\'\xb7\x18L\xbf\xd8\xc3.Z\'y\x03\xf3\xc1\xa0\xba\xaa\x03\xf8lG\xd6\xc0T\xec\t>N\xca\xf3\xe20\x99i\xd5\xdd\xb4\xcb9T\xd6\x97\xdb\x9di\x85;T||\xc8\xaa=)\xf2X\xb1\xcd7:\xac\xbfDv\x8c\xc9-\xe4\x19\x11\x1ds\x16#\x85\x9d\xfa\xdbyW\xdf\xcc\x9c\xc4\xc0\xa4G\xc1*\xdb\xab\xceN\xa0\x88n1$6\xc2\xd5=!\xf3z\xc9B\xa6\xaf\xca\xd3\xec\xc1t\x8d3\xc5ip\xa1\x89R\xac\xc7\x1f2\xbc\xc8\x9d\x14\x0c\xfeDF\x9b\x1a\xb6\xaeoYZ\x82\xad\x0cg\xf2\xd6\xce`\xe2Y\x17?%`\xa3\x86\xef\xb1\xafn\xd0\x0f\xf68e\xb7\x7f\xd7\x82\xbbx\xd7\xc0\xc2\x88Sso\xedN[U\xac\xa3I\xcc\xc3\xf61ff:D\x83\xb6\x0b\x9d\xe6q\x03T\xae\xc3\xa1t\xff$\rCt\x9fN\xb6\x96"\xc2\x9a\xdb\xd0x\x8bs\xb1\xcd\x97<\tS)\xf7\xe5\xfd\x9bn\r\xd8:\x00\x1a\xed9[\xfak\xb9\xe8i\x1cO\xc7\x95;\x8a\xfc\x9dE\x99*\xff_\xca\x7f\xccfC\x9b\x14P\xed+\xbd\x1e\x00\xfdtj#fKX\x8d\xa8\xd9^\xe7\x1f\x01.\xf1\x88\xc9\xc4\x19b\xee\xa2\xed\xdeue\x10\x89I=\xaaZ\xeb\r\x94|7\x8flF-\x9a\x94 \x01\x14\x18\xe1\xd1\xd7\xef\x10\x06\xc2\xe1\x98\xc5"\x03\xa3\xfe4\x82\x96e\xfa_\x16\x91(>;\x02E\xd9\xa4\xe1\xc1\xb0\x12\xd6\xe5z\xcc\xd2N\x05C\xe3\x9d\x0f\x9d\xa1\xbb\x86\xbc\x8d\x9dp\xfb\xf7\x02\xd6\xbf\x19\xd7\xf7\xc8\x8c\xfb\x84U\xf7tW\x87Y\xa8\xad\x0cE\xdc\x01\xa1\xc9\xde\xfd\xe5N\xcd\xa7\xb3\x0b1\x85S\xf1\xf8\x96u\x12\xc5n\x89\'D\x89\x11Pg\xa1\xc3\x94{\'\x16\xa8\xba\n\xbb"\x07\xe1\xa5aF\n\x8c\x94\xe2\xc0ys\x0e\xf7\x80\x8f.\xee\x1a\xac\x92\x8fr\xf6\x89\xbe\xe1\x8e\xfey\x7f\x08O\xb3\xb5%w\xf0?\x92\xed\x98]\x90\x18&\x93j_\x9a\x89t\xa4 =&\xd4jd\n\xd0M?\x86\xf3\xea\xc5\x10\xab}\xb4\xad\xc7+\xed\x8b\xbb[\x0e\x975\xb9\xe1\x85Bq\xbb\x81\xd6\n\x9e\xa0M\xf9\xf8[\xed\x18\xcb\x82\x1a-\x92.\t\x85\xe0\x18,\x14\x1eb\xdd\xfc\xa4\xca\xa5\xf0\x1ee\x88 \xc9bdV+\xcc\x19?\x89L\x9fX\xc1z\x0f=\xc4,d\xb9\x1a{S\xb8\x9a\xe4(;=\xe3\xe4K\x03\x19\xaf\x1cu\xfa\x82\x0e_~\xfc\xb9&\xbb%\xb9[b\xcf\xc0\xd7@\xd9{\xd3Hx\xe6\x17\xdc\t\xe0\xa7\xecv\xd8\xceK\xcac\xa4\xf6\x9b\n\x81\x08\xb7\xa2\xf1\xcf\xac\xea`')

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

	fake.sha1(raw_output=False)
	# '5da6e52eab54f7d0b46fdc9ee43e27ccdf4cc37b'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# 'da698fd3994d6980e7a36deae1ecc2e94361fa515eaa44424d6391493af1e13c'

	fake.uuid4()
	# 'c53d3856-c4eb-ef26-0636-4ed1324d0b10'

	fake.language_code()
	# u'hy'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Scott'

	fake.name_female()
	# u'Ashley Cherry'

	fake.prefix_male()
	# u'Dr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Christopher Anthony'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Andrew Johns'

	fake.first_name()
	# u'Rodney'

	fake.suffix_male()
	# u'DDS'

	fake.suffix()
	# u'II'

	fake.first_name_male()
	# u'Stephen'

	fake.first_name_female()
	# u'Shelly'

	fake.last_name_female()
	# u'Clark'

	fake.last_name()
	# u'Hall'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'+962 7 7632 6935'

	fake.operator_id()
	# u'9'

	fake.cellphone_number()
	# u'0743171641'

	fake.telephone_number()
	# u'+96273919922'

	fake.area_code()
	# u'3'

	fake.service_phone_number()
	# u'935'

	fake.msisdn()
	# '8438362387276'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'37675 Maxwell Fords\nNorth Alejandro, UT 88561',
	#     'birthdate': datetime.date(1907, 2, 15),
	#     'mail': u'wjones@yahoo.com',
	#     'name': u'Jared Ewing',
	#     'sex': 'M',
	#     'username': u'mitchellgary'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'4571 Peterson Village Apt. 810\nSmithhaven, KY 71669-7265',
	#     'birthdate': datetime.date(1946, 5, 16),
	#     'blood_group': 'A-',
	#     'company': u'Powell Ltd',
	#     'current_location': (Decimal('75.4910175'), Decimal('-56.268479')),
	#     'job': 'Designer, interior/spatial',
	#     'mail': u'john97@gmail.com',
	#     'name': u'Todd Jensen',
	#     'residence': u'43934 Wendy Ramp Apt. 285\nLoganport, WY 96933',
	#     'sex': 'M',
	#     'ssn': u'767-28-3666',
	#     'username': u'deborah88',
	#     'website': [u'http://ritter.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   1441,
	#     9463,
	#     48436.6198206615,
	#     8604,
	#     u'https://king.biz/app/homepage/',
	#     u'XAeWtryvvUcZTJpKahrP',
	#     u'RPNYEnkNPmHDGYtzIqEs',
	#     datetime.datetime(1978, 1, 25, 23, 0, 14),
	#     Decimal('659613.986702'),
	#     186.1,
	#     740714.4695944,
	#     u'DGlartOGuoXKsZiRwyxF',
	#     u'JnOlzmucCaszUWGfUZNC']

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'vwpDsXFNsLICUnyTxzrY',
	#         u'ezyPMHTdaAGymZSybASg',
	#         34218556900.5527,
	#         u'bruce91@yahoo.com',
	#         u'http://robinson-haynes.biz/register.html',
	#         u'pvDfBfaiSvTqdxqeOiQX',
	#         u'PsrwIUupPRYDyPhvsgKj',
	#         datetime.datetime(2010, 5, 13, 22, 53, 59),
	#         Decimal('-25318132.0'),
	#         u'https://www.gregory.net/search/blog/category/register/'],
	#     {   u'adipisci': 7397,
	#         u'atque': 4628,
	#         u'debitis': Decimal('6.37197644093E+12'),
	#         u'dicta': 3285,
	#         u'necessitatibus': 9056,
	#         u'numquam': u'DdOvXbjWCPPlVurteWAn',
	#         u'quos': 956213.67259,
	#         u'soluta': 5108,
	#         u'tempora': u'hfJAZcaIttGUkpSsvBXN',
	#         u'voluptatum': 676},
	#     {   u'deleniti': {   0: Decimal('-76752594669.8'),
	#                          1: [   68.8784067,
	#                                 Decimal('33072424.9036'),
	#                                 datetime.datetime(1984, 12, 22, 6, 32, 13)],
	#                          2: {   0: u'XdehLCgrUbacBZNjrhyY',
	#                                 1: 4869,
	#                                 2: [   u'glUHYItherkSwmMpEByC',
	#                                        Decimal('15650.131271')]}},
	#         u'eos': {   9: u'YNnBylgRJrdPjwmjRUrG',
	#                     10: [   u'elqeddmEigjhbGkQoban',
	#                             Decimal('-5506147.37114'),
	#                             Decimal('-44335571562.9')],
	#                     11: {   9: u'ttYbnXyGsoglUCTNtTQL',
	#                             10: u'eshaw@nixon-jordan.info',
	#                             11: [Decimal('-3.95'), Decimal('-280881.9526')]}},
	#         u'est': {   4: 3363,
	#                     5: [   Decimal('-6.54966239371E+13'),
	#                            u'https://lopez.biz/posts/main.html',
	#                            u'rqnsJmbRMQQFepxcFwmo'],
	#                     6: {   4: u'https://www.reynolds-dennis.net/',
	#                            5: Decimal('-24331082.35'),
	#                            6: [   u'http://nelson.com/post/',
	#                                   u'ShdnPbdSYgUnfIgwHRwM']}},
	#         u'exercitationem': {   5: Decimal('99.92182'),
	#                                6: [   u'sGVjdmlbkCDEarHuZBGh',
	#                                       u'lbrooks@yahoo.com',
	#                                       u'https://phelps.com/blog/author.htm'],
	#                                7: {   5: datetime.datetime(1985, 9, 5, 8, 24, 22),
	#                                       6: u'dudleytiffany@gmail.com',
	#                                       7: [   u'SkNhONGebvjjQRdrxWIi',
	#                                              u'SEKLwgFZHJLdHUgSSTuG']}},
	#         u'inventore': {   7: u'dxvkehjMaPjgzOzKRznW',
	#                           8: [   -750.1547283,
	#                                  Decimal('64.4170491'),
	#                                  u'ricardowatson@hull.com'],
	#                           9: {   7: u'elizabethkelly@hotmail.com',
	#                                  8: u'SoyIGNDqcbDoGcVFwoEm',
	#                                  9: [   u'eUcTIGxDpxjRpJDSuXUe',
	#                                         u'dyhfxsazNaridgOBcsoR']}},
	#         u'ipsam': {   8: u'https://www.cooper-brown.com/main.php',
	#                       9: [5098, 5630, u'XwtYeVJBqHUTvPhIUrex'],
	#                       10: {   8: Decimal('-1.615777'),
	#                               9: 3636,
	#                               10: [   Decimal('2.02567515623E+14'),
	#                                       u'QNvzTzFxYvjRfJsLzbkJ']}},
	#         u'nam': {   6: u'https://hernandez-porter.info/explore/about.php',
	#                     7: [   u'erindavis@sharp.org',
	#                            u'ytTircaXVYcEFHdveIzn',
	#                            -48306804.84],
	#                     8: {   6: u'http://www.vargas.com/',
	#                            7: u'SsqdIaeDOhMJXuxIQedB',
	#                            8: [   3039,
	#                                   datetime.datetime(2018, 2, 14, 21, 57, 46)]}},
	#         u'natus': {   3: u'ewqqkgeTNuOvoauwUobI',
	#                       4: [   Decimal('6.85760555232E+13'),
	#                              u'GatVllJqckHBuACKoXho',
	#                              u'eXFapuoJasqZGNMdwfMq'],
	#                       5: {   3: u'znelson@gmail.com',
	#                              4: 4138,
	#                              5: [4010, u'uFNJzdwCMfNyXAjhHnaZ']}},
	#         u'quidem': {   2: u'AGVMLHcSbROKQmeiIqhV',
	#                        3: [   7648,
	#                               u'https://www.erickson-taylor.com/posts/wp-content/category/category.htm',
	#                               datetime.datetime(1983, 8, 24, 20, 23, 16)],
	#                        4: {   2: u'pnzMFqlLPSQJsDjudTrR',
	#                               3: datetime.datetime(1970, 7, 18, 10, 38, 6),
	#                               4: [   u'NvyzLksSxDBTLWAfAnTV',
	#                                      Decimal('-73.7166242')]}},
	#         u'voluptate': {   1: u'DNQMiVhYrpGRzurVUoKS',
	#                           2: [   u'rYaAFLGeQNWBGLJPECTw',
	#                                  -53711648.9142,
	#                                  u'mQoGOTIIiURvFPwavFiI'],
	#                           3: {   1: 8851,
	#                                  2: u'NepsYAosJBZLPrwrOOEU',
	#                                  3: [   u'NcDDpqaECIecBVrvMdoA',
	#                                         u'http://duncan.org/posts/faq/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   89555596.2181066,
	#     505219291357.36,
	#     u'aEwgQFuoJCwFIQolhnRb',
	#     u'cQxoinMHHkjwlPCHFzQD',
	#     u'morganscott@martin.net',
	#     Decimal('-4.53076071222E+12'),
	#     -432.3578,
	#     1952,
	#     datetime.datetime(1972, 5, 17, 7, 55, 40),
	#     u'dFIZvuReyqINKPEdaJIn',
	#     -26689737.7]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'nicolecunningham@santiago.info',
	#     7539,
	#     u'rossamy@coleman-proctor.info',
	#     datetime.datetime(2009, 9, 2, 7, 58, 11),
	#     9688,
	#     u'http://www.thomas.net/posts/explore/home.jsp')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([841066.7658, 9346, u'https://estrada.org/', u'hzDRPJZdUQQlNQlggkbZ', 1646, u'http://www.brooks.info/register.jsp', u'PLZnKugiidRDfiRAVWgA', u'MISGFFWwMgeIiqLViNqP'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquid': 8894,
	#     u'fugiat': u'http://www.moore.info/main/',
	#     u'ipsum': u'DsczHdKsivOBqNiaYlbd',
	#     u'magnam': 3988,
	#     u'natus': u'rbailey@stewart-king.com',
	#     u'vitae': 1601}

	fake.pyint()
	# 1875

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'102-79-4483'

	fake.ein()
	# u'63-7648912'

	fake.itin()
	# u'929-84-8589'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.0; tk-TM; rv:1.9.2.20) Gecko/2013-06-28 15:14:21 Firefox/3.6.9'

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

	fake.opera()
	# u'Opera/9.37.(Windows NT 6.0; ks-IN) Presto/2.9.189 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; 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; PPC Mac OS X 10_6_5) AppleWebKit/5310 (KHTML, like Gecko) Chrome/31.0.835.0 Safari/5310'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; mg-MG) AppleWebKit/534.5.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6534.5.1'
