
Language ar_SA
===============

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

::

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

	fake.building_number()
	# u'3201'

	fake.street_address()
	# u'56030 \u0646\u0634\u0623\u062a Mountain Apt. 580'

	fake.postalcode_plus4()
	# u'57829-1850'

	fake.city_prefix()
	# u'West'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'\u0627\u0644\u062f\u0628\u0627\u063aton'

	fake.zipcode_plus4()
	# u'84651-8229'

	fake.state_abbr()
	# u'PR'

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

	fake.street_suffix()
	# u'Valleys'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 7467 Box 4766'

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

	fake.country()
	# u'Antigua and Barbuda'

	fake.secondary_address()
	# u'Suite 487'

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

	fake.postalcode()
	# u'33809'

	fake.address()
	# u'86274 \u0623\u0628\u0648 \u062f\u0627\u0648\u0648\u062f Oval Apt. 516\n\u0622\u0644 \u0645\u0639\u064a\u0636bury, ND 03542-2129'

	fake.state()
	# u'Michigan'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'\u062d\u0627\u0641\u0638 Brook'

	fake.zipcode()
	# u'23939'

	fake.postcode()
	# u'18111-2570'

	fake.military_apo()
	# u'PSC 5532, Box 3089'

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

::

	fake.license_plate()
	# (u'8156 NSL', u'\u0644 \u0633 \u0646 \u0668\u0661\u0665\u0666')

	fake.license_plate_en()
	# u'1228 ZEH'

	fake.license_plate_ar()
	# u'\u0637 \u0631 \u0642 \u0663\u0669\u0663\u0664'

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

::

	fake.bban()
	# 'AGCM4933315661595'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB67OGBQ0632218493061'

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

::

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

	fake.ean13()
	# u'0747083750889'

	fake.ean8()
	# u'38805325'

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

::

	fake.rgb_css_color()
	# u'rgb(171,86,181)'

	fake.color_name()
	# u'MediumVioletRed'

	fake.rgb_color()
	# u'46,197,42'

	fake.safe_hex_color()
	# u'#773300'

	fake.safe_color_name()
	# u'navy'

	fake.hex_color()
	# u'#e68a01'

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

::

	fake.company()
	# u'\u0627\u0644\u0639\u062c\u0644\u0627\u0646 Group'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Realigned transitional flexibility'

	fake.bs()
	# u'transform e-business convergence'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Diners Club / Carte Blanche\n\u0632\u063a\u0644\u0648\u0644 \u0627\u0644\u062c\u0627\u0628\u0631\n30357112267545 07/23\nCVC: 078\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'ETC'

	fake.currency_code()
	# 'USD'

	fake.currency_name()
	# 'Gibraltar pound'

	fake.cryptocurrency_name()
	# 'TRON'

	fake.cryptocurrency()
	# ('AUR', 'Auroracoin')

	fake.currency()
	# ('AZN', 'Azerbaijani manat')

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

::

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

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

	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(1994, 12, 1, 6, 8, 7)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 5, 15)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 8, 23, 41, 19)

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 5, 20, 7, 20, 35)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 5, 29, 9, 5, 24)

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

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2000, 5, 9)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 2, 9)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2006-03-25T04:36:44'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2008, 4, 30)

	fake.month()
	# '08'

	fake.year()
	# '2012'

	fake.day_of_month()
	# '02'

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

	fake.timezone()
	# u'Pacific/Guadalcanal'

	fake.century()
	# u'XI'

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

	fake.time_object(end_datetime=None)
	# datetime.time(5, 12, 10)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 2, 25, 4, 45, 4)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2000, 6, 13, 22, 19, 19)

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

	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, 8, 11, 14, 9, 59)

	fake.month_name()
	# 'September'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1557, 1, 8, 13, 16, 12)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(3216, 39561)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/eligendi/eveniet.png'

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

	fake.file_name(category=None, extension=None)
	# u'necessitatibus.wav'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'al-tfbd-lhfyz@yahoo.com'

	fake.url(schemes=None)
	# u'http://al.info/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'post'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'jljln@gmail.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'bd-lswmy70@hnbwly.com'

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

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

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

	fake.slug(*args, **kwargs)
	# u'magni-perspiciatis'

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

	fake.company_email(*args, **kwargs)
	# u'skhral-sfwn@al.info'

	fake.uri()
	# u'https://www.bqshn.net/category/'

	fake.ipv6(network=False)
	# 'bb19:ed5e:dbdb:7cc8:d3fc:2572:e523:61eb'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'mrshdal-ly@example.org'

	fake.mac_address()
	# u'58:6b:8e:5e:69:44'

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

::

	fake.isbn10(separator="-")
	# u'0-310-06347-7'

	fake.isbn13(separator="-")
	# u'978-1-62737-030-1'

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

::

	fake.job()
	# 'Passenger transport manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Accusantium placeat ad odit inventore nulla expedita. Eius aperiam atque asperiores nobis sunt mollitia.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Aliquam similique saepe nam. Quo similique deserunt rerum.',
	#     u'Omnis architecto vel. Aperiam voluptates in sit aut corporis. Dolore doloribus architecto quo accusantium eius nisi corporis. Fugit dolorem repellat.',
	#     u'Ut ipsum rerum accusantium. Vero sed inventore quasi dolores at consectetur. Quasi dignissimos accusamus quam. Veritatis doloremque laboriosam et.']

	fake.words(nb=3, ext_word_list=None)
	# [u'porro', u'optio', u'nostrum']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Id repellat sit id.',
	#     u'Illum aliquid incidunt id sapiente.',
	#     u'Quasi repellat sint id.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ipsam rerum nisi neque neque error explicabo sequi. Voluptatibus eius dolorum tempore ab sed perferendis. Soluta ea libero sapiente voluptatibus perferendis sequi.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Hic ullam ad.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'6%b0(GXr%4'

	fake.locale()
	# u'mag_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xca\xdc\xda=>.\xf97\xd3\x8cPo\xc9|\xd9z<O\xa2m\x16B\x1fr+\x9d\x86xr\x83\xa5\xb0\xbe\x9f\xd3)\xad\\\xae2\xc5\xa0q\x94\x8f<K\x16\xc5?F;\x92v\xc1;{\x8e\x8c\xe9\xf5\x1d\r\xa1\x84\x98l.c\x8f\xe0T\'\x12q\xb3\x9a6\xf2\x1a<>\xa9\xf8a\x7f\xad\xecN\x05\xc2U\x9f\xaa\x08#\x9d8\r\xa7\xf5\xd5_Z2I\xc4\xf7\x84\xf6\xea\xaf\x7f\xb7\xc8FpI\xba\xee\x91IiN\xd5F\xab\x8f\x1a\xe9\x0e8\n\x8f\xab\xae\xcb\x8f\x97*\xba"x\xd5\xef\x02\x86\xc4\xec\xc3\xe7Ne\xa3h\x06\xccXyE\x99!2\x84\x83\x11\x95\xcd\xc8\x1b\x83\xf7\x05\x89:.\x1b\x08\xe1\xea\xb0\xab\xda\x15*}\xfc\x94\x13\xf5\xab?"\x0f\x04Wx\x06\xe8\xc3\x98u|\xfe\xe7\xe5\xb00\xa7\xf8\x8a\xe2\xde\xc6\xb2\xdcI\xba\x97\xdb\xd3\xc5V\xa0KV6H\x97|*N\x81o\xe1W\xee6\xb5\x99\x92\x06\x95A\xab\r\xd5\xeb\xb7T%\x1b%\xa0\xd7_}\xe8\x9eh\xe3#\xff\x13\xc8\x1e\x97\xd8W\xf7\xdd\xb3\x03\x88oQ\xc3\xa7n\x1dl\x91\xfd9\xf6\x9bJ\xf12[\x10\xfb~\xb9\xfe\xe4\xbd\x95\x84\xd8\xf2.\xd8\x18\x8cZ/\xbf"q-\x87A\xdb\xf8\xfbRySdy\x16\x1b\xf0\xa9\x15$\xd7\xbci$\xd0MT\xdf\xdb\xc9\\v\xdc\x86\x96\xf1\x91"\xf4\xff\xba\xad\xf8$\xbcQA\xee0\x18\xbb\x1e\xf8Q\x8b\xd1eJ0\xc3<\xbc\xa8\xc6\x95U\xe0\x87\\]\xb0\xeez\xbf\xa6\x9c0\x18\x7f\x10q\xffz|\xcf\x03\xa7\xc9e>]\xee_\xa0<\'\x97^\x9d\xc0\x04\xc3\xa5\xd6\xf7\xde.\xa6\xd7L\xcf\x1d*\xd6\xdb\xbf\xd4L\x10\xf1\xdd\x9c\xa0\xb1\xa5\xa1J\xd0\xe4\xc1@\xd7\xf9\xf5:\xcb\x82\xdd\x9ca]\x13!\xa4\x015\xc1\xe4?nbih\xcf\xc6\xfe\xa3:\xf6=\x97\x82"0\xe5>\xd3\x82\x17\xa4\xd6\x17\xd4\xddP\xf9\xe1\x8b\xdcB\xf2\xfb\x02\x0f\xf5q\x94\xda\xaa\xf3\x84\xf1\xd5\xb1\xb9\xe3\x05e\xac\xda?\x16\x1a\x9av"a)C\x03@p\x10\xdd\xbf\x1b\x0chgv\xc8\xab\x8d6\xa7\xd6\x14\x05Z\x10I\xe6aG\xa7\xd4\xba\x94\xafL\x92\x98Y\xe5\x12\x83\xfaQ\xcf\xdc\x97L\x9aA\xf3\xb9\x19\xa2\x12\xc7\xf0\x17\xb9\xd1\xa2\x100?\xa1G;\r9\xb8+M#\xba\xbf\xb3e\x14%^wz\xb5\xdeX\x01>SGq\xee\xa7}\xc5 \xb8\xf8\xb49\xfa\x17C\xd1\xb6\xe1+\x18\xb7\xf0\x04\xacga\xe9\x8e\xa0V\x01\xa5\t\xf0E3{\x8c\xbdH\xf8%\xf5)\xe7y\x0b\x81]\xba\x9a\xb3c\x89\xd4\x12\xfaj\xce\xfb\xe4\x95<}7\xf0\x99\x90$\x892)3-\xd1F\r\xe3\xcb^\x04\xf9|`\x1c\x0c\x13X\x9b2m\xd2\xfb\xd2\x1a\x10\xa2\x90\x06\xfa\xee\x99\x0ean\xe6\xfdl\xee\xa1\x83d\xfdrXa\xf1\xd4\xaf\xb5\x13\xcc\x17\xb7v\x16\x93\xb1\xf0\xc7k\x94\xb3\xb8\x18\x06\r?i\xba\rj\x01\xf7X\xd2\xfb\xac\xa6U\x16\x92\xe3\xa0\x0f\xbf\x88\xd5\xfb*w\x83\xe7\xb6\xe5j\x8d\xfe]:\xb1\x9c\xd2S}\xd4\xf1\xf6U\t\xb3u\xa87\x1c\xa9\x04#\x18\x0b\x89\x98\x8c{\xe9P,H\xd6i\x1b\xf1\x05\x87\xdd\x8f\x84I-\x06\xce\xec \xe7a\r\xadh\x05\xa9\\r\xc7\x1b\xb1\xdf\x8d\xb6\xf8<\xeb\x16\xd2\xb6\x04u$\xf8K\xc9\r}\xd3\xb8S\xb3\xb7\xc6bg:9^\xa4#\x10`\xde,\xac\xc5\x00G-\xb5\x12\xbd|\xac\x96\x84o\xca\xfb\xfb\x8c\r\xcb\xca\xcb\x9d\xd1\x1f\x04R*\xe1\xf5E\x0e\x03 \xef*\xbc\x0b\x9eP\x9e[@\x08e/O*p\x07\xc8\xdfj\xf9\xe1\xf8\xd7h\x03\xe3\x95\xf2\xe8\xa9g;\xbc\xf8%\xe0\\\xa5\x91\xc8?kM\xd09\xaf\xe2L\xe6\xed`\x9dCmz\x9b\xac\xeb\xfc\xa7\x82H0!\xeb#\xe4wD\xfe\xa9\x93\xc5+\xacR5bO#Rqx\xd1ehOn\xdf\x9d\xf0\t\xb6<\x05\xa6\xf9\x0b*\xdc\xf0\x8c]\x0c\xa6\xf7+\xdbp\x04\xce\xf4\n\x16X{^\x1d\xde\xa6%\xc3%\xb6\xdb-:\xe0S\x13\xf77g$')

	fake.md5(raw_output=False)
	# '32881adc60ff5306b752a50a0a60eb11'

	fake.sha1(raw_output=False)
	# '6b32a81b3dafbc88e677d77a7233cd5ada3a6fad'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '4354687ee52e582f1e1ea8d5d2cdd3bd77a5cca7da3732e09318279585c943ca'

	fake.uuid4()
	# '0b67acd6-d17e-670b-9497-5fe84867260c'

	fake.language_code()
	# u'nb'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u0627\u0644\u0645\u0647\u0646\u0627'

	fake.name_female()
	# u'\u0644\u064a\u0645 \u0627\u0644\u0645\u0647\u064a\u062f\u0628'

	fake.prefix_male()
	# u'\u0627\u0644\u0623\u0633\u062a\u0627\u0630'

	fake.prefix()
	# u'\u0627\u0644\u0633\u064a\u062f\u0629'

	fake.name()
	# u'\u0627\u0639\u062a\u0645\u0627\u062f \u0623\u0628\u0648 \u062f\u0627\u0648\u0648\u062f'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'\u0627\u0644\u0645\u0647\u0646\u062f\u0633 \u0646\u0627\u062f\u064a \u0627\u0644\u0639\u0644\u064a\u0627\u0646'

	fake.first_name()
	# u'\u062f\u0627\u0631\u064a\u0646'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u0641\u062e\u0631 \u0627\u0644\u062f\u0651\u064a\u0646'

	fake.first_name_female()
	# u'\u062c\u0648\u0627\u0646\u0627'

	fake.last_name_female()
	# u'\u0627\u0644\u062d\u062c\u0627\u0631'

	fake.last_name()
	# u'\u0643\u0627\u0646\u0648'

	fake.prefix_female()
	# u'\u0627\u0644\u062f\u0643\u062a\u0648\u0631\u0629'

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

::

	fake.phone_number()
	# u'08590839388'

	fake.msisdn()
	# '5821236635418'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'USS \u0622\u0644 \u0631\u0641\u064a\u0639\nFPO AP 24960',
	#     'birthdate': datetime.date(2013, 3, 6),
	#     'mail': u'wlqyl@gmail.com',
	#     'name': u'\u0628\u0627\u0633\u0645\u0629 \u0622\u0644 \u0627\u0644\u0634\u064a\u062e',
	#     'sex': 'F',
	#     'username': u'al-sltnwsyl'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'706 \u0627\u0644\u0639\u0644\u064a\u0627\u0646 Mountain Apt. 249\n\u0622\u0644 \u0645\u0642\u0637\u0629land, HI 16450-2201',
	#     'birthdate': datetime.date(1975, 5, 5),
	#     'blood_group': 'B+',
	#     'company': u'\u0622\u0644 \u062e\u0636\u064a\u0631 Inc',
	#     'current_location': (Decimal('34.3748835'), Decimal('31.373936')),
	#     'job': 'Airline pilot',
	#     'mail': u'ljlndhwk@gmail.com',
	#     'name': u'\u0627\u0644\u062f\u0643\u062a\u0648\u0631 \u0639\u0628\u062f \u0627\u0644\u062d\u0644\u064a\u0645 \u0627\u0644\u062d\u0643\u064a\u0631',
	#     'residence': u'323 \u062f\u0627\u0646\u064a Stravenue Suite 788\nNew \u0633\u062e\u0627\u0621land, NM 99534',
	#     'sex': 'M',
	#     'ssn': u'338-81-2549',
	#     'username': u'kbyr94',
	#     'website': [   u'https://al.com/',
	#                    u'http://al.biz/',
	#                    u'https://hnbwly-lmhydb.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([6403, 7783, u'HLfdqCeUOPZPzldGTuxc', u'UCCJsbqvlKDZkiwsxDkp', u'https://www.al.org/', u'https://al.org/blog/list/index.html', datetime.datetime(1998, 6, 30, 15, 10, 36)])

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

	fake.pystruct(count=10, *value_types)
	# (   [   941187.42264,
	#         7638,
	#         u'srm63@bqshn.net',
	#         202755027.0,
	#         u'https://www.al.biz/faq/',
	#         u'bBRTmkEwObEXFJHSUWJi',
	#         u'iputqyeJmokaJuKxJhML',
	#         u'JcauQcUrvGWtVKftKBbv',
	#         Decimal('-462673.704377'),
	#         u'wVLAugiLzEzJsSzqkFyA'],
	#     {   u'ad': u'http://lmshwl.com/',
	#         u'at': u'sCcaHftvLLUwqxDfCwas',
	#         u'cupiditate': u'https://lmshwl-al.com/app/index.html',
	#         u'explicabo': u'zeroLJxbiMXVIyjFKimJ',
	#         u'harum': 7774,
	#         u'iusto': 7418,
	#         u'nesciunt': u'ZDJDkCRamjifYPbZCbLx',
	#         u'nulla': u'pfPlJZWelRoClwWxkSUI',
	#         u'quas': u'VFXzGmmGPpHpFrkSmbZr',
	#         u'quis': Decimal('-457.801746276')},
	#     {   u'adipisci': {   8: 8234,
	#                          9: [   u'uISbzdEpeSOgkylNDYNP',
	#                                 9360,
	#                                 u'https://www.al.com/wp-content/search/categories/post/'],
	#                          10: {   8: 4082,
	#                                  9: Decimal('771189.478529'),
	#                                  10: [3765, 5218]}},
	#         u'assumenda': {   3: u'OcZgcIVehExLnPhQfGPV',
	#                           4: [   u'UIhNpksBfzdEVZMkKBsQ',
	#                                  u'wyl09@lmshwl.org',
	#                                  -668332007.0],
	#                           5: {   3: u'DIBWJAjxpvCsUKsaORQB',
	#                                  4: 8375,
	#                                  5: [u'dwEbWjcLGMIjPHXdkExa', 1050]}},
	#         u'excepturi': {   6: 2.60765570650987,
	#                           7: [   u'BsMvIZInbdLIzFHFzZsh',
	#                                  u'https://www.al.biz/tag/blog/categories/about.htm',
	#                                  datetime.datetime(2015, 4, 28, 14, 4, 31)],
	#                           8: {   6: datetime.datetime(2014, 7, 6, 20, 18, 42),
	#                                  7: datetime.datetime(1983, 9, 17, 21, 32, 59),
	#                                  8: [8229, u'mLIwToBeYxVCRZuypKSe']}},
	#         u'ipsum': {   2: 9176,
	#                       3: [   u'vMYRWSWkPIQtrruonNmM',
	#                              u'oltMaUyhqGItnLqlrdGW',
	#                              u'NkYiusLYnIGWIkgNBKgb'],
	#                       4: {   2: u'hbwb61@al.com',
	#                              3: u'WnnIYhjTvgQGMtoMpDrK',
	#                              4: [9966382.6142, u'lJbQsQBYKIEwowWosKwn']}},
	#         u'natus': {   5: Decimal('86196419.0'),
	#                       6: [   u'rwwf53@al.com',
	#                              u'ZybHCVRfWULdUoyLgMJR',
	#                              u'http://www.lkhrfy.com/tags/about.php'],
	#                       7: {   5: u'GsYWwDkWWmyKNSqOaqdp',
	#                              6: u'NHuGXPdtBkweENPzuwFo',
	#                              7: [u'uEbeeswgNgfLnPHIxoku', 6416]}},
	#         u'necessitatibus': {   4: u'ZfNhmIlEnENmXPNEpEnY',
	#                                5: [   u'aZwzFhQkussOeMsEjRQK',
	#                                       u'vxZiQFvpIURyEwjikzKw',
	#                                       u'https://www.al.com/list/search/categories/home.htm'],
	#                                6: {   4: Decimal('-1.82563'),
	#                                       5: 9961,
	#                                       6: [   datetime.datetime(2017, 1, 18, 11, 30, 50),
	#                                              datetime.datetime(2015, 4, 21, 14, 12, 58)]}},
	#         u'perferendis': {   7: u'srm31@al.biz',
	#                             8: [   datetime.datetime(1975, 8, 16, 18, 18, 9),
	#                                    u'yHfHyNWgkLoXqcOtYnkb',
	#                                    9514],
	#                             9: {   7: 990078424152.56,
	#                                    8: -853.17224904741,
	#                                    9: [   u'nrjcMBXNrWLRieBTcYNN',
	#                                           u'LPmnxpureXxWphQNxxjs']}},
	#         u'quos': {   9: 1308,
	#                      10: [   u'hdMylXariDWrTnQFTeqj',
	#                              2306,
	#                              u'zZPorcQGuvtuWxnEQqvi'],
	#                      11: {   9: 3239,
	#                              10: u'mSvAWRrWzpCVVKiQaNhG',
	#                              11: [   -414555144.0,
	#                                      u'http://www.ldbg.com/post.htm']}},
	#         u'veniam': {   0: 77968059720.0,
	#                        1: [   Decimal('34054.474'),
	#                               u'http://lkhrfy.com/login/',
	#                               3506],
	#                        2: {   0: Decimal('-618.2095965'),
	#                               1: u'FZrpLwfsgpFQwjXcsgtg',
	#                               2: [770980187.5191, u'oQixdDEaofNPRjKREdsv']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'krweDnywsgrdkIZsQrEi',
	#     datetime.datetime(2017, 1, 15, 7, 26, 24),
	#     u'https://al.com/wp-content/index/',
	#     datetime.datetime(1977, 9, 12, 19, 15, 22),
	#     Decimal('-4462.42309137'),
	#     u'eRVNjOfkLfkmtWRTmJdQ',
	#     datetime.datetime(1973, 11, 11, 11, 57, 25),
	#     u'nNwZpAmxTNPqMvKPvsTm',
	#     u'https://al.com/list/login.php',
	#     datetime.datetime(1970, 11, 24, 23, 50, 20)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   21803.3823286,
	#     1.0,
	#     7243,
	#     datetime.datetime(1976, 3, 6, 20, 4, 29),
	#     u'https://al.info/app/posts/index/',
	#     Decimal('14.961'),
	#     u'vlVtsCmIKKLOWMCTCeDy',
	#     9717,
	#     1145,
	#     u'https://ldbg.com/')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'https://www.ljfly-al.com/home.php', datetime.datetime(1973, 5, 22, 18, 31, 22), u'ZOoRhXmTrzFErHYnMtUM', 8205, u'http://www.lmhn.com/faq/', u'ifKWiSdajywCpMDKJqQE', u'qBvenkbRKLIYfvYUeZpr', u'hCTCwEMUtylMjtbWFFmu', 7702, Decimal('-133861511.0'), u'qyLLBagQuqjUZxcuhpmq', datetime.datetime(1972, 9, 28, 13, 45, 11)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'accusamus': 37825824676236.2,
	#     u'autem': Decimal('-40.28'),
	#     u'deleniti': u'kgYCzXYkdGjDdYthwQBD',
	#     u'fuga': u'pZztrhXhXDXGgXVDFRLT',
	#     u'ipsum': datetime.datetime(1994, 3, 25, 6, 10, 55),
	#     u'iusto': Decimal('-560449.16'),
	#     u'laudantium': u'IVlTEMJIahPBCmRIMcJS',
	#     u'officia': 1301,
	#     u'perferendis': u'GCsfiWSwgEzuxEXOrAav',
	#     u'praesentium': u'yVtoKARsnhfhwgKNcpQL',
	#     u'quidem': u'OlNaAdFKmaejGmIrnZmV',
	#     u'voluptas': u'BUbgDvdUuNwBrcCtcKoI'}

	fake.pyint()
	# 829

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'508-91-5372'

	fake.ein()
	# u'26-8759296'

	fake.itin()
	# u'900-98-4575'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2010-03-23 01:54:19 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.82.(Windows CE; gez-ER) Presto/2.9.190 Version/10.00'

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

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

	fake.user_agent()
	# u'Opera/9.32.(X11; Linux x86_64; tr-TR) Presto/2.9.180 Version/12.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 (X11; Linux x86_64) AppleWebKit/5342 (KHTML, like Gecko) Chrome/17.0.840.0 Safari/5342'

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

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