
Language ar_PS
===============

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

::

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

	fake.building_number()
	# u'478'

	fake.street_address()
	# u'6571 \u062a\u0627\u062c Mountain'

	fake.postalcode_plus4()
	# u'17703-3471'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'\u0627\u0644\u0623\u062f\u063a\u0645stad'

	fake.zipcode_plus4()
	# u'28082-2715'

	fake.state_abbr()
	# u'AK'

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

	fake.street_suffix()
	# u'Court'

	fake.city_suffix()
	# u'town'

	fake.military_dpo()
	# u'Unit 6576 Box 6722'

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

	fake.country()
	# u'British Indian Ocean Territory (Chagos Archipelago)'

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

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

	fake.postalcode()
	# u'73882'

	fake.address()
	# u'48288 \u0627\u0628\u062a\u0647\u0627\u0644 Stravenue\nEast \u063a\u0627\u0645\u062f, WV 30519-7140'

	fake.state()
	# u'South Dakota'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'\u0627\u0644\u062d\u0646\u0628\u0644\u064a Run'

	fake.zipcode()
	# u'92280'

	fake.postcode()
	# u'15727'

	fake.military_apo()
	# u'PSC 8804, Box 7672'

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

::

	fake.license_plate()
	# u'3-1916-13'

	fake.district()
	# u'9'

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

::

	fake.bban()
	# 'EJJW2426121118279'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB03MPVY1595183629480'

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

::

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

	fake.ean13()
	# u'6532921103101'

	fake.ean8()
	# u'66866206'

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

::

	fake.rgb_css_color()
	# u'rgb(92,238,100)'

	fake.color_name()
	# u'\u062d\u0630\u0641\u064a'

	fake.rgb_color()
	# u'96,57,36'

	fake.safe_hex_color()
	# u'#228800'

	fake.safe_color_name()
	# u'\u0645\u0627\u0626\u064a'

	fake.hex_color()
	# u'#159630'

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

::

	fake.company()
	# u'\u0627\u0644\u062e\u0627\u0632\u0646, \u0641\u0637\u0627\u064a\u0631 and \u062f\u063a\u0645\u0634'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Switchable next generation moratorium'

	fake.bs()
	# u'redefine frictionless technologies'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\n\u0648\u0644\u064a\u062f \u0627\u0644\u062e\u0627\u0632\u0646\n6011822164454200 08/22\nCVC: 915\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'UBQ'

	fake.currency_code()
	# 'UAH'

	fake.currency_name()
	# 'Cuban convertible peso'

	fake.cryptocurrency_name()
	# 'MazaCoin'

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

	fake.currency()
	# ('BWP', 'Botswana pula')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 28, 7, 9, 29)

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

	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(1991, 4, 23, 0, 37, 42)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2014, 11, 4)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 13, 10, 19, 22)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 11, 24, 7, 15, 8)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 11, 3, 17, 55, 33)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1979-10-04'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1980, 6, 26)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2004-05-12T12:51:44'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 11, 28)

	fake.month()
	# '02'

	fake.year()
	# '1975'

	fake.day_of_month()
	# '15'

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

	fake.timezone()
	# u'Europe/Belgrade'

	fake.century()
	# u'XXI'

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

	fake.time_object(end_datetime=None)
	# datetime.time(12, 45, 24)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 2, 1, 3, 12, 36)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1971, 7, 22, 8, 45, 46)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 12, 15, 12, 42)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1456, 1, 15, 11, 1, 17)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(8320, 44798)

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

::

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

	fake.mime_type(category=None)
	# u'video/quicktime'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/inventore/nesciunt.wav'

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

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

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

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

::

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

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

	fake.tld()
	# u'com'

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

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

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

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

	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'strbyn@example.net'

	fake.ascii_email(*args, **kwargs)
	# 'tybw-snyn@gmail.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'jrrmhmd@ltrkmn.com'

	fake.domain_name(*args, **kwargs)
	# u'bw.info'

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

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

	fake.slug(*args, **kwargs)
	# u'dolor-explicabo-id'

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

	fake.company_email(*args, **kwargs)
	# u'ljnydyrw@bw.org'

	fake.uri()
	# u'https://www.ftyr.com/tag/homepage/'

	fake.ipv6(network=False)
	# 'b7c5:8d6f:9148:af73:6b1c:94d9:d776:73dd'

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

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

	fake.mac_address()
	# u'f8:85:b3:f8:2c:84'

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

::

	fake.isbn10(separator="-")
	# u'0-02-653408-8'

	fake.isbn13(separator="-")
	# u'978-0-531-61742-7'

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

::

	fake.job()
	# 'Computer games developer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Odio dolor dignissimos assumenda fugiat. Iste aliquid tempora ad.\nOdit reprehenderit nulla nam repellat sunt eaque. Maxime nihil cum consequatur animi quaerat.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Vitae fugit blanditiis tenetur tenetur aliquam ab. Dicta sed rerum accusantium exercitationem vitae. Quasi quod commodi quasi nostrum nihil placeat.',
	#     u'Est ipsam voluptates ex quisquam quis. Minus ipsam ea praesentium.',
	#     u'Occaecati hic quo quidem ea nihil nihil. Quae mollitia aperiam consequatur repellat sequi distinctio.']

	fake.words(nb=3, ext_word_list=None)
	# [u'reiciendis', u'voluptate', u'natus']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ducimus quae quis minus.',
	#     u'Veritatis odit dolorum tempore in.',
	#     u'Aliquam sunt qui commodi suscipit veniam repellendus.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Non magni sit aspernatur iure tempora cupiditate. Quidem minima illo quam doloribus natus modi. Expedita in in vel aliquid voluptatibus.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Ipsa vitae exercitationem soluta ipsa.'

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

::

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

	fake.locale()
	# u'as_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xfcSb-\xf20\xba\n\x8f|\xa0%\xb6\x03\xb2}\r#\x18\xea\xab\xa3\xfe\x06\x8e`\xd4P\x06x\x03\x94\x01g\xe8[\xf7B%\x1d\x81\x82\x98\xbb\xfcl/\xdc\xefw\x1d|\x01>E\xad\xd4\xcd\xaf\x81{\xd6\x9c\x03]G\xd5\xc9\x07K\xeb\x94\xbb<SM\x1cZWQ\x99\x18\xaa\xdbD\xbf\xf2Y\rPv\xca\x0bu\xa5t\x08Z\x88\xab\xc7N\x9e\xcd\xd9\x81\xc7\x9e\xdc\xd8\xef\xcd\xdd\xfe\xc8%\x9a\x0f\xbd<\x87\xba\xdeaoPD\xdf\x94\xc8c!\xac\x863\xb3SX\x95\x9d\xf8\xf2|\xf4\x81D\xca\xc0\r)\x99G\x8f\xdeV98\xe6\xdb\x96y\x9b|/\xfb\'\xe6P\x96\xdd\xae\xe0.\xc3\xfa\xf7\x06\xed\x0eS\xe5\x0b!\x12\xa6m(\xa0\xcba\xe1\x14~\xefh\xd9\xe0\x02\xc2\xe4\xb3hV36\xf2be\xd7=6\x118\x83\xf7\xcd\xf5\x02\x930\xb2\xa2\x16\x99\x95E\xa4I\xc8\xaf\x98\x00\x0b\xf5P\xabh%\x18\xc0\xdd(\xe4a\xbbc\xb5I\x1d\xe6\xf4Zv5\x1awk\xb4\xc4h\xac@s\x8d\xb6\x1cSs\x8f\x9c\xda\xc0\xbdo\x0c\x1e#f3s\xa3F\x1fF\xbf3?\xcd\x8e\\5\x9a\xf5W\x87\xde\x0c\xeaU(Bk \xaa\x054\xc5\x94\xe5\x12\xdaV\xbf:\x19,\x17\x96\xfdI\x9ar\x8e\xaa"\xef\xd9\xeb\xff\xbe\x9eaS\x98I\r\xe1\x07\r\x8a=\x89.v&i\xd4\xdf\x91,\xf8\xd2x\x0f\xfd\xf3{\xfbo\x1c\xfb\xb36\xff\xb4\xeeI\xaa\xe8\x0e\xde=\x12\x8fB\xa21\xd5\x1e.\xf1z\xd1\xb6\x91\xaaes\xf2\x08[,DT}\xbd<\xaaS;)*\x956\x02}\xff\x00\xda\xbcZ4\x03\x99J\x16\x8cD\x0b\xb1\xd0\xd0\xe0\x91S\xd9"6\xe2\xc7\xc2\xe9r\x01\xa5\x92\xaa\xfcRIAj\xfaK\xcc*\xbb\xe1\x96[\x14\x8b \x02:::\x18`\xa2\x08x\x8c}\xd7\x8c\xd7\xf1\x85\xf7\xb1\xae\xe5\xd3\x86nys\xe3\x04ik\x8f\xbb\xb0\x10\x9dF\x8b\x00\xb89\xcc\x11J\xa1S\x18\x91\x93\xd6e\xf2\xe7\x16\xc4\xaf\x03\xadd#\xfa\xaa"\x041k"\x03~\x92^o\x03\xa9oA\n\xb1O\x85\x94\xa3\xb3&?\x8d`\xe0\xa4\xe9vF@\x1ag\x1f\x06\x87\xc8\xde\xd0uss\xcb/z2T\xa3U.\x18\xa2\xed\xe4\xb2\xbco\xa3\x06\xc4\x88\xe9\xf4\x1dT\xbb\x10\x91V\x8b\x1e\x99\xc0\xe0\x15\xfd9z\xa0\x03\\\xf4\xc1d\xb0\xbb%\x13_|\x84EL\xc9\xa3G\xfb\x0e\x9ey\xaa\x8b\xe4\x89\x8e\x89\rk"\\4U\x12A\xc4\x8e]\xeb\xdfI>3\xcc <\xbf\x9e\xc3W\xe4\x90\x01\xdf\xec\n\xa1\xa8\x99\xf4\xddYbs7\x19\xf1\x8e\xb3\xd9\xd2!\x0f\n1q\xc8\xfd\xf3\x86\xf6\xda^\x8b\x0e\xa7\x11\xa1\xee\x96\xe4\x82\x145\xf4L\x8d\x02c\x9c\xde\xc1\x9awRl\x86\x149\xd0\xbb8\xc5\xa2\x1aKJS\x14\xe8\x8a\xb2\xfd\xc9\xcc\t\xae@\'D\x11\xab\xc3\xbfa\xcf\xc0lz8\xd1\xde\x9b\xa1G, \xe7$W\xbd\xd5\x91\x1dl\x18\x84\xb9k!\x0e\x03\xccq\xf7\xeb;H\x88\xa6F\xb0I%eQk\xee\xd3v\x18\xf3\xbcZpz\xacu\x14-\x9a\x82\xd3U_)\xcal\x17\xf7\x7f5\x10h\xbaeP^?\x85\x1d h\x84\xe0*\xc2A$\xe7\x19\x1b\xc0\xa48\x0bU\x00;\xad\xbbB{\x85\x16u\xf3\xde\x15\xd0\x15\xcd\x14\x891\r\x82\xf9\xcd\xc4\x0e\xce/\xf4\xb2\xd4\xe6}\xc0y\xd3\x9e\x808o\xbeZ\x8e\xc76\xeeE=V\xdb\x98\x15\xffF9c\xec_\x12G:\x14\x0f\x04?M\x0b\xe7r\xb1LF\x86d]\xb7\xf9\x12.\xc7\xe1g\xe0\xda\x8f\xfb\x92)\x07{T6\x9eF\xad\xba\x185\x9c~\xa9\xac^\xdf\xdb \x8d\xdf3\xfc\xbbi\xeak\xed\x19nA\x0f\xc8x\xf9e\xd3o\x0f\xdag\xb1\x98\x13\xd5\xfb \x02\xc8z\x7f\xf8\xbcgO!?\xf5\xa1\x8eW\xc0\xe1\xe3\x08g\xb0!\x1f\x95\xf7\x8c\xda\x8b5\x0fMA@\x8f\xb2\xad\xad\xc4\xdb\xd4\xfey\x1d\xa9\xaai\xafm\x899\x97\x9e\x92\xfe\x8b\x14\xc8\xd1\x04\x18\xb79e\xc8a\x11`\xb6c\xd2\x8c\x1d\xb7\x85')

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

	fake.sha1(raw_output=False)
	# '46047dc7ccd797c33f8f5022a6d0a78cc38f3cb1'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '7c00e2a57496bd2a2db531fe8f5f5279092bc2d72ea8496c0077eaf10102d64a'

	fake.uuid4()
	# '0b3f984a-c91f-d705-9a47-3520e6ce5570'

	fake.language_code()
	# u'crh'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'\u0637\u0648\u0642\u0627\u0646'

	fake.name_female()
	# u'\u0627\u0644\u0623\u0633\u062a\u0627\u0630\u0629 \u0628\u062a\u0644\u0627\u0621 \u0627\u0644\u062e\u0627\u0632\u0646'

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

	fake.prefix()
	# u'\u0627\u0644\u0645\u0647\u0646\u062f\u0633\u0629'

	fake.name()
	# u'\u062f\u0627\u0631\u064a\u0646 \u0627\u0644\u0646\u0639\u0646\u064a\u0634'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'\u0645\u0633\u0639\u0648\u062f \u0623\u0628\u0648 \u0642\u0645\u0631'

	fake.first_name()
	# u'\u0623\u0641\u0631\u0627\u062d'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u0638\u0627\u0639\u0646'

	fake.first_name_female()
	# u'\u0647\u064a\u0627\u0645'

	fake.last_name_female()
	# u'\u062a\u0631\u0627\u0628\u064a\u0646'

	fake.last_name()
	# u'\u062c\u0631\u0627\u0631'

	fake.prefix_female()
	# u'\u0627\u0644\u0622\u0646\u0633\u0629'

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

::

	fake.phone_number()
	# u'+97082058263'

	fake.cellphone_number()
	# u'0562255905'

	fake.service_phone_number()
	# u'102'

	fake.msisdn()
	# '9530571257751'

	fake.toll_number()
	# u'1 800 613 314'

	fake.telephone_number()
	# u'+97282843059'

	fake.provider_code()
	# u'59'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'4986 \u0627\u0644\u062e\u0627\u0632\u0646 Walk\nLake \u062e\u0645\u064a\u0633shire, RI 61604',
	#     'birthdate': datetime.date(2002, 2, 23),
	#     'mail': u'lnnyshysr@gmail.com',
	#     'name': u'\u062d\u0633\u064a\u0646 \u0623\u0628\u0648 \u0627\u0633\u0646\u064a\u0646\u0629',
	#     'sex': 'M',
	#     'username': u'zhrljnydy'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'90352 \u0633\u0641\u064a\u0631 Freeway\nSouth \u0633\u0639\u062f\u064aborough, VT 06659-6660',
	#     'birthdate': datetime.date(1965, 11, 3),
	#     'blood_group': 'B-',
	#     'company': u'\u0635\u0644\u064a\u0628\u0627, \u0642\u0631\u0627\u062f\u0629 and \u062a\u0631\u0627\u0628\u064a\u0646',
	#     'current_location': (Decimal('-14.6507155'), Decimal('-103.063883')),
	#     'job': 'Hydrographic surveyor',
	#     'mail': u'bw-glywnlyn@yahoo.com',
	#     'name': u'\u0627\u0644\u0623\u0633\u062a\u0627\u0630\u0629 \u0631\u064a\u0645\u0627 \u0637\u0648\u0642\u0627\u0646',
	#     'residence': u'76549 \u0645\u0646\u064a\u0639 Course Apt. 590\n\u0647\u0646\u0627\u062f\u064aland, OR 30290',
	#     'sex': 'F',
	#     'ssn': u'649-57-8254',
	#     'username': u'kswnymhnwd',
	#     'website': [   u'http://www.ljnydy-jzr.com/',
	#                    u'https://www.lzytwy.net/',
	#                    u'http://bw.com/',
	#                    u'https://lzytwy-hshm.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'fkhr-ldwyn03@kswny-hshm.net',
	#     u'WEYfACSMRHmdTihIDmxs',
	#     Decimal('-35834.508709'),
	#     5586,
	#     u'HhWcNXdBsOldgKUFswuN',
	#     Decimal('-708.0'),
	#     u'http://www.ldgm.com/post/',
	#     u'hsyb23@hws.com')

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'WdXBzwFfGViJuQwQaCHq',
	#         9592184.32306,
	#         3179,
	#         u'GdRmzoslwdMQJWvUmNlb',
	#         u'https://www.ltmymy.org/',
	#         u'frj65@hotmail.com',
	#         2358,
	#         u'kCjfKaClpYVyUyZPJkHq',
	#         9167,
	#         6416],
	#     {   u'aliquid': u'MnzaGjCzhwNozOqwbjoQ',
	#         u'debitis': datetime.datetime(1974, 6, 12, 12, 46, 12),
	#         u'dolorem': 8532,
	#         u'ducimus': u'UnRaGZwUjECaNLGgPjab',
	#         u'eius': 1193,
	#         u'exercitationem': datetime.datetime(1996, 2, 19, 19, 16, 30),
	#         u'expedita': u'http://www.lskkyny.com/',
	#         u'iure': -234.9,
	#         u'nobis': u'MDUicPeVLIZAfEnkjuQW',
	#         u'sequi': u'IKTMYPoeNVlNHvDmCzsX'},
	#     {   u'et': {   1: u'jddgErEOHhlWTPOYPkVH',
	#                    2: [   u'JDrtSZUIvgVbbJEmDJDT',
	#                           u'YapSlXgIPVBlGmAxwQxL',
	#                           u'PhugewzXQscAVcxNPVHT'],
	#                    3: {   1: 6927,
	#                           2: -455897173263.6,
	#                           3: [u'imrmsh@ltrkmn.com', 8574]}},
	#         u'ipsa': {   5: u'vNDwExdffdFsmwocWAlh',
	#                      6: [   u'kuXtyVujtCoUKhRPxtJM',
	#                             Decimal('-309989883323'),
	#                             5130],
	#                      7: {   5: -2722551511.37,
	#                             6: 85282073981.4,
	#                             7: [u'DDgndZBJNxgVMrySLGpx', 7966]}},
	#         u'iusto': {   3: u'sjyjGXOlPqYTJZSsfPVC',
	#                       4: [   u'ZubnNgBebSybWnbIYDyf',
	#                              5716,
	#                              datetime.datetime(2004, 6, 21, 16, 23, 18)],
	#                       5: {   3: 762149268.53766,
	#                              4: 9048,
	#                              5: [2665, 234512795260.0]}},
	#         u'minima': {   2: u'http://bw.com/register.php',
	#                        3: [   u'GZuaAPfkmnIsJSLfTPmc',
	#                               Decimal('86793.566'),
	#                               datetime.datetime(1971, 12, 27, 16, 53, 48)],
	#                        4: {   2: u'ftyrhny@yahoo.com',
	#                               3: u'IxfAWOCTlhBuonoznhRM',
	#                               4: [u'NbOekgwSGvmMBmmNhONI', 6284]}},
	#         u'officiis': {   9: 408443.816,
	#                          10: [-8.3412, 8853, 7364],
	#                          11: {   9: u'https://lzytwy.net/about.htm',
	#                                  10: u'https://lhnbly.biz/terms.php',
	#                                  11: [   u'NuylAfQEsnzOxaMplbdk',
	#                                          6144855.3951884]}},
	#         u'possimus': {   0: 143,
	#                          1: [u'uWcezcGWMKnPjjobhJvq', 7344, 3284],
	#                          2: {   0: u'hwsmnsy@dgmsh.com',
	#                                 1: 397,
	#                                 2: [   3778,
	#                                        datetime.datetime(1972, 3, 20, 19, 50, 32)]}},
	#         u'quis': {   4: u'SkNTeryfgixinCKAKIWx',
	#                      5: [   u'ftyrngm@lkhmsh-lhsyny.com',
	#                             u'OUXzwdHBQQZvhImheIQW',
	#                             u'qHIqberJUsREXoBKMYyx'],
	#                      6: {   4: datetime.datetime(1981, 3, 13, 11, 56, 18),
	#                             5: u'TdzamOXlekiSBFcJCunq',
	#                             6: [   u'ZLZJacrXTvzpXRNQfVSv',
	#                                    u'EPltSWetodTMVwENGOiX']}},
	#         u'repellat': {   6: datetime.datetime(1997, 2, 27, 11, 56, 58),
	#                          7: [   datetime.datetime(1996, 8, 13, 19, 51, 37),
	#                                 datetime.datetime(1970, 1, 18, 6, 36, 54),
	#                                 u'aNHgdmGByLLQzQCpgbQk'],
	#                          8: {   6: u'GZuMiWpTUxpwmzEefGpP',
	#                                 7: u'VIPyEYNABMOdYBJmGwqj',
	#                                 8: [   u'http://twqn.com/author.php',
	#                                        u'VqlHudDpnqNYHRJgdfQe']}},
	#         u'voluptas': {   7: datetime.datetime(1999, 6, 4, 17, 27, 2),
	#                          8: [   u'https://www.lbrgwthy.com/',
	#                                 datetime.datetime(1990, 11, 7, 13, 35, 4),
	#                                 Decimal('27354368090.9')],
	#                          9: {   7: u'lkhznsmh@hshm.biz',
	#                                 8: u'abw-glywn@jrr.com',
	#                                 9: [   datetime.datetime(2014, 11, 7, 11, 33, 23),
	#                                        u'dhyb30@ftyr.org']}},
	#         u'voluptatum': {   8: 5266,
	#                            9: [   u'lPxtijbzsomjGdlCxhfG',
	#                                   u'CDeMmKPKpzPTFmfIqiqf',
	#                                   u'dDKHeqleEyvIjCVXZyGR'],
	#                            10: {   8: Decimal('-6.29607896734E+14'),
	#                                    9: 6714,
	#                                    10: [   -6499.314707919,
	#                                            u'http://www.qrd.biz/index/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   4946,
	#     Decimal('2.4'),
	#     u'XLPUGcqpcNNVsEdtymKA',
	#     u'lr60@lnshshyby.net',
	#     u'http://www.qrd-hws.com/login/',
	#     u'http://www.lnshshyby.net/tag/wp-content/tag/index/',
	#     datetime.datetime(1978, 7, 12, 9, 45, 50),
	#     u'IzNQVvnlfygnhMCnxVLi',
	#     u'fRTZjFQgPGbdYyUogtOB']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-875.4'),
	#     u'BaCEzlQGvXdfifBHkyiq',
	#     u'http://ljnydy-lzydny.biz/list/explore/category/',
	#     723,
	#     183,
	#     Decimal('297459774552'),
	#     datetime.datetime(1979, 10, 18, 0, 2, 9),
	#     4156)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([7618, datetime.datetime(2013, 2, 10, 6, 50, 25), 7813.187, u'IAiqqFHFxDbpWNLNMsMj', 911, u'KJkvirvoZVjSYvUTWupE', datetime.datetime(1973, 8, 19, 14, 12, 24), u'AFhnHnFLqqNBvOVWkVkv', u'ldmAlwJqmJGKFLprRvpk', u'https://nsyb.com/wp-content/categories/posts/faq.htm', u'mlhm91@hotmail.com', datetime.datetime(1995, 10, 22, 6, 9, 48)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'consequatur': 9694,
	#     u'deleniti': u'bUlajqtBIdSrfexXUybw',
	#     u'eaque': -1.681709577,
	#     u'error': u'hmmymyr@yahoo.com',
	#     u'fuga': u'MujKNqaALTpJbZkjpCYb',
	#     u'nulla': u'NHsXmSiaOqmcgahckNpa',
	#     u'quod': datetime.datetime(1974, 3, 3, 10, 31, 8),
	#     u'vitae': datetime.datetime(1990, 3, 11, 19, 28, 22)}

	fake.pyint()
	# 4349

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'007-39-9634'

	fake.ein()
	# u'55-9660929'

	fake.itin()
	# u'925-91-1354'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.2; cmn-TW; rv:1.9.1.20) Gecko/2010-10-11 02:11:42 Firefox/3.6.19'

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

	fake.opera()
	# u'Opera/8.84.(X11; Linux x86_64; niu-NU) Presto/2.9.189 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/2018-03-21 01:59:32 Firefox/4.0'

	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/5331 (KHTML, like Gecko) Chrome/54.0.859.0 Safari/5331'

	fake.mac_platform_token()
	# u'Macintosh; Intel Mac OS X 10_6_8'

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; fil-PH) AppleWebKit/533.49.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6533.49.4'
