
Language ar_EG
===============

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

::

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

	fake.building_number()
	# u'143'

	fake.street_address()
	# u'01480 Anderson Center Apt. 378'

	fake.postalcode_plus4()
	# u'97567-2146'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'Mooreborough'

	fake.zipcode_plus4()
	# u'06216-2306'

	fake.state_abbr()
	# u'PW'

	fake.latitude()
	# Decimal('-66.6752245')

	fake.street_suffix()
	# u'Crossroad'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 9972 Box 7582'

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

	fake.country()
	# u'Poland'

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

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

	fake.postalcode()
	# u'28023'

	fake.address()
	# u'8164 Diaz Drives Apt. 737\nNorth Nathanbury, PW 10015'

	fake.state()
	# u'Missouri'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Garner Forks'

	fake.zipcode()
	# u'56601'

	fake.postcode()
	# u'60565'

	fake.military_apo()
	# u'PSC 2874, Box 9743'

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

::

	fake.license_plate()
	# u'RTR 026'

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

::

	fake.bban()
	# 'CVUT0071507192144'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB37IFWH1405888001389'

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

::

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

	fake.ean13()
	# u'2014782097200'

	fake.ean8()
	# u'26600413'

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

::

	fake.rgb_css_color()
	# u'rgb(190,174,173)'

	fake.color_name()
	# u'MediumSpringGreen'

	fake.rgb_color()
	# u'137,97,199'

	fake.safe_hex_color()
	# u'#448800'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#448f8c'

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

::

	fake.company()
	# u'Fernandez-Graham'

	fake.company_suffix()
	# u'Group'

	fake.catch_phrase()
	# u'Profit-focused demand-driven paradigm'

	fake.bs()
	# u'syndicate web-enabled portals'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nJoseph Ramirez\n6569237542997133 08/28\nCVC: 915\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XRP'

	fake.currency_code()
	# 'MVR'

	fake.currency_name()
	# 'Haitian gourde'

	fake.cryptocurrency_name()
	# 'NEO'

	fake.cryptocurrency()
	# ('ADA', 'Cardano')

	fake.currency()
	# ('PAB', 'Panamanian balboa')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 6, 19, 33, 24)

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

	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(2019, 1, 30, 1, 43, 47)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 4, 17, 58, 1)

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

	fake.day_of_week()
	# u'\u0627\u0644\u0623\u062d\u062f'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 3, 20, 12, 12, 32)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1994, 7, 14)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 11, 1, 22, 38, 29)

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

	fake.am_pm()
	# u'\u0635'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1979, 6, 17)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1997-02-23T06:39:03'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2010, 3, 12)

	fake.month()
	# '08'

	fake.year()
	# '1985'

	fake.day_of_month()
	# '26'

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

	fake.timezone()
	# u'\u0625\u0641\u0631\u064a\u0642\u064a\u0627/\u0645\u0642\u062f\u064a\u0634\u0648'

	fake.century()
	# u'\u0627\u0644\u062d\u0627\u062f\u064a \u0639\u0634\u0631'

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

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 2, 20, 14, 20, 36)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1974, 4, 4, 10, 9, 38)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '09:13: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, 5, 6, 18, 44, 51)

	fake.month_name()
	# u'\u0641\u0628\u0631\u0627\u064a\u0631'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1041, 4, 2, 18, 33, 47)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(13976, 77335)

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

::

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

	fake.mime_type(category=None)
	# u'model/x3d+xml'

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

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

	fake.file_name(category=None, extension=None)
	# u'itaque.bmp'

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

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

::

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

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

	fake.tld()
	# u'info'

	fake.email(*args, **kwargs)
	# u'brianfisher@gmail.com'

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

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'faq'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'harry08@yahoo.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'stephenpruitt@henderson-heath.com'

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

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

	fake.domain_word(*args, **kwargs)
	# u'matthews-atkins'

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

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

	fake.company_email(*args, **kwargs)
	# u'christina42@spencer-rogers.info'

	fake.uri()
	# u'http://www.white.org/blog/posts/about.jsp'

	fake.ipv6(network=False)
	# '54b9:bbc8:4b92:71c8:9811:3b70:65fa:be3'

	fake.free_email(*args, **kwargs)
	# u'aharrison@gmail.com'

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

	fake.mac_address()
	# u'69:48:ff:a3:14:42'

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

::

	fake.isbn10(separator="-")
	# u'1-193-48500-2'

	fake.isbn13(separator="-")
	# u'978-0-87751-366-7'

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

::

	fake.job()
	# 'Archaeologist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Sequi architecto consectetur nesciunt dolores labore. Deserunt unde consequatur aliquam odit odio veritatis. Dolore quam est. Sunt similique veritatis labore inventore unde corrupti quis.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Ipsum consequuntur reprehenderit dolorem explicabo. Sint error suscipit excepturi at autem illum soluta. Corrupti quasi praesentium tempore excepturi nisi.',
	#     u'Fuga illum eos aperiam.',
	#     u'Explicabo facilis accusamus id quisquam.']

	fake.words(nb=3, ext_word_list=None)
	# [u'autem', u'eum', u'facilis']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Cumque sequi explicabo unde quidem officiis.',
	#     u'Natus inventore quisquam.',
	#     u'Dicta dignissimos dolorem enim quisquam quam quo.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ratione illum dolorum quia. Maxime sint voluptatum unde maxime quisquam occaecati. Tempora nobis molestiae incidunt.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Numquam distinctio porro blanditiis.'

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

::

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

	fake.locale()
	# u'cy_GB'

	fake.binary(length=1048576)
	# bytearray(b'\xcafb\x15$\x16I.\x13i\xcc\xd5TVL\x06\x9a\x16\xe8CL\xdc\xa8\xe7I\xe7`\x05\x95\x08\x16B\x89}\x90\x0fa\xbb\xb0\xc9\x9f\\\xb9\xc9\xd4\xe1\x9e\x07\xbb\xf9\xaeJ\x1c\x8a\xb0p\xb9\x85\xb4[\xe5\xcfCx\xf8=+\xf1*\x8c\x14_\xdc\x89\xbf\xb7\xb39YY\xdf&\xc4\xa5Sm\xc3x\xd8P\x99\xd0\x1c\x9c"\x1d\x0e\xd1w\xf2\x82\xf6\x1b\xcaD)@\xbe\xfa\x16\x05\x94\xf6\x15"\xdb\xb4\xc8\xa0\x8f\xe3\xf92\xcf\xc7\x96S\xa2^\xdd7\x83\xb8lY4\x83g \xd6\x7fh\xffn\xc1y\xc9A\x02\x9b\xc8d-X]>\x1b\x8f2\xc1.\xb6"\xb56o\x01\xe9/e\xc3\xcc\x96/(><\xc0\xecr\xd2\xfc\x1f\xe3\n\xf9K\xe2b\xdak\xb5\x86\x9f4b\xc9\xbb,\x98\x97,c\xc8\t\xcb\xd24u\xff;i\xd2\xc8\xaa^\x97\x91\xac\xe86t\xf8;\xeb\x0b\x85\xbc\x7f@\xaf\xff\x0b\xf9W\x9d\\\x13\xea\rl\x8cn3\xc8u\x8a\xe8\xafD\x8b\xed\x05zi.qe\x08\xd5\x84\xa2\x0fQ\x1f\xad\xbd\xddu\xae5\xb49\xe5\xd8W+\r\x7f\x04\xccWh\x94K\x01l\xecY:!I[{\xfd\x17l\x10-\xb3B\xaaej\xa9\x805\x18\xfc_\xd0\xe12\xa0,\xf0\x9b723e\xc1\x04[\xb8\x99\xe8m\x95\xa9\xad\xa2/\x91a\x8a\xab\xfe\xc0\x94R-\xc2\x9a\x97\x03\xa4\xc7^\x99\xeb>f\x0cu\xa9\x9at\'\x90\xd4H\xe2\xbci@\xe8\x7f\x8b\xa5\xdaB\xc3\xc6\xa1q\x87\xec\x81\x82\x8d\xfc\xe4\xc5\x90\xf7\xd5\xf5\x8c?\xf3T\x1cE\x95q\xba\x94vB\x18\xc2\xa7\x87\x0bl\x1d7d\x95#\xe6\xaf\xcf,\x17\xaa=R\xf1\xfb\xb4\xb9\xbcK)\xbe\x06]\xbc\xa5\xf8\x00\x91\xc0\xee?L\x890\xe5\xd4\xa0\xa76\xe7F\xc6Z\x13\r\xea\xda\xdb\xd6z\xe6\x07M\xcc\x11bIs\x13\xc1\x84\xbenC\xfd\xfe>\x9by\x92\xfeLM\xa3\xfe!\xc2\xf0\x85qr\xf1f?y\xcb\xfaH4\xbf\\\xff[H>\xbd/\x9c`\x94\x95>\xcd\x05\xc1\xc4\xfd7O\xb0bb\xaa\xa7\x92\x7f\xc56 #,\xe9\xdc\x02\xa16\xa8{\x7f\xe8J\x81}\x96\x07\xaa\xd2\x1d8\x0bI\xcb*\xa9\xc2-\xc6\xeb,`\x9dp\x939\xcb\x89\x8a\xb9\xeb\xbd[\x02\xe6\xb2\xed\x16\x997\xff\xe1\xab\x01\xfb\x9a\x8bM\xe4\xe3\x1a\x1a\x97\xda\xdc\x1e\xc6X\x12\x1f\xb2\xd2\xf3`\x0cR\xf4\x9c\xf4\x8f\xa2\x85\x9c`\x89b\xf4\x11\xa8\xd5E\x9f<\xb6\xd2\xc5\x81#N0k\x0e\x05\xce\xe0\xe0TB\x9d\xe6\xb4\xd2.\xd7h|b(\xbf\x1f\x1d\xe1\x05eb\x88\xa1\xad\xd3t\x96\xcf\xc1\xbf\x7f,C\xd9\x85P\xcf\xa1\xd6\xaa=p\xf2\xce~$2e\x11E\x8c"V\xc5^\xe1\xfb3\x90+\xa71UN\xd2\x17u5{\xb2\x964H\xee\xec\x1b\xaa\xea\x8b3khr}S\xf1]o}T\xc1\xf1\xcdV \xb7+\xa8t\xf3\x96\xfa\xd7X\xd25\'\xb8\x98\x9c\xbd\x99f\xf7\xeb~B}\nw\xf6\x1e\x04=\x93d\x0b\xd7\x0f\xb7\xd3\xe2l\xebo=q\xc5\xfe}L\xf1\x88U\xe8u\xd8\xdc\xecvn\xce\xa7\xa5\\\xe4\x16,\x93\xec\xfa\xc3\x10\xad\x90x\x05\x8f\xdd\xf2\x0be\x1c\x93`\xca\xa2\xfbQSR@\xa2A\x17B:\x17\xd4\xe1@\x17\xd1E\xf9\xcb~\xbe\x16\xd8<\x9c\xcd\xf0\xfe\x11\xee\xcb\x876\x9e\xad@18\xf7\xcdM\xc0fg\xdf\xab\x0e\x98\xc2\xf1\x9a\x01\xcbs\x89\x9d>kM\x8ao\xe6\xcc\x93%\xb1Y\x1deR_\xe8\xc3\x93O\xe1aT\xcf\x0f\\\xf0\x87A\xdf\xf9\xa2j\xe2\xc8[9`\xc0M\xac\xb8~\x16\x12\x01\xa6\x7f&x\x8b\xd7,Z\xff\xf2q\xf3\xa3\xaa\xa5R\xa0=XLR\xb4\\\xd5:\xeaf~\xd1\xe2\xd3\xf8\x04\xe1\xafb)\xeb\xdb\xe3+i8d\xc3U\x8b\xda\x1c\xdf\xceM~\xba\xa5~\xca\xb2\xaa80\xf9#\xbbp\xfb\x81Q\xa0\x85\xc9D\xdf\xe7\xdae\xcbw\xf8\xf0a\xd8\x88\xb7\x8d\x9a\x0f\xec\xacO\xe0~\xba\xe8\xf9\xd5\xea\xff\x88v\xbc\xc7\x99j/\xd4\xeb\xf3\x8d\x0f\xee\x96\x08,4\xbc\xc5\xa2')

	fake.md5(raw_output=False)
	# '655b4eca43dffe48c83ba67683354862'

	fake.sha1(raw_output=False)
	# '98b6d9318591e9317dbe3b05c5a90a4e60b595fe'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '28cb5533e8f61794bea2047b790f0b5bfe87aaf3c5c4ef9b758c2bd218f67ec4'

	fake.uuid4()
	# 'eb9c4073-4341-96f1-1112-45a8bdd3952d'

	fake.language_code()
	# u'se'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Flores'

	fake.name_female()
	# u'Alyssa Miller'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Kenneth Wood'

	fake.suffix_female()
	# u'DVM'

	fake.name_male()
	# u'Benjamin Allen'

	fake.first_name()
	# u'Danielle'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'DVM'

	fake.first_name_male()
	# u'Peter'

	fake.first_name_female()
	# u'Karen'

	fake.last_name_female()
	# u'Stevenson'

	fake.last_name()
	# u'Gibbs'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'+05(4)9231097113'

	fake.msisdn()
	# '9176212624233'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'736 Lisa Squares Apt. 096\nChristopherchester, DC 14479-7856',
	#     'birthdate': datetime.date(1992, 4, 16),
	#     'mail': u'darryl14@gmail.com',
	#     'name': u'Cheryl Fritz',
	#     'sex': 'F',
	#     'username': u'daniellehaas'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'5708 Martin Mountain\nWest Zacharyshire, MH 80468',
	#     'birthdate': datetime.date(1981, 10, 5),
	#     'blood_group': 'B-',
	#     'company': u'Bishop Group',
	#     'current_location': (Decimal('22.8298825'), Decimal('-91.608157')),
	#     'job': 'Fitness centre manager',
	#     'mail': u'gonzaleztony@yahoo.com',
	#     'name': u'Alicia Gates',
	#     'residence': u'158 Miller Via\nBrendaton, AL 03531-0635',
	#     'sex': 'F',
	#     'ssn': u'105-11-0956',
	#     'username': u'obrienchristopher',
	#     'website': [   u'https://www.jackson.com/',
	#                    u'https://thompson.com/',
	#                    u'http://www.davis-jones.com/',
	#                    u'http://johnson.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(1988, 5, 29, 9, 28, 13),
	#     u'http://smith.com/',
	#     18.26324,
	#     7256,
	#     283,
	#     u'PIcqIChjQjcdZezPHbYe',
	#     u'hqMKoPCZVSoZxKJDjuhN',
	#     u'pvNGhaDhTtWdywlRFtnL',
	#     u'lwood@hotmail.com']

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

	fake.pystruct(count=10, *value_types)
	# (   [   913,
	#         32.74,
	#         datetime.datetime(2002, 11, 16, 12, 4, 9),
	#         Decimal('409299036.207'),
	#         u'pqNzfBdMTdnIxrQNfvEA',
	#         datetime.datetime(2001, 11, 15, 16, 15, 39),
	#         u'mddwCrOimFfxxuyUxrtr',
	#         5.2725,
	#         4376,
	#         u'mendezstanley@gmail.com'],
	#     {   u'architecto': 936,
	#         u'consequuntur': u'bXxgUAUtGIBLyTSmCPYk',
	#         u'cum': u'OHyZRFjdnBkEoRZdbgGy',
	#         u'doloremque': u'vwest@yahoo.com',
	#         u'doloribus': datetime.datetime(1987, 5, 21, 15, 41, 55),
	#         u'minus': 939.7367592,
	#         u'nemo': datetime.datetime(1971, 6, 14, 5, 27),
	#         u'soluta': 6278,
	#         u'vel': u'https://www.huber.com/search/tag/list/privacy/',
	#         u'voluptate': u'KJkaBmOHqEOALcWrUsFs'},
	#     {   u'autem': {   2: Decimal('-1.176002141E+13'),
	#                       3: [   -69968087.864657,
	#                              u'fischergeoffrey@yahoo.com',
	#                              u'http://www.dawson.com/main/explore/main/main/'],
	#                       4: {   2: Decimal('-52.17991818'),
	#                              3: -86121962555521.0,
	#                              4: [   Decimal('33761180.543'),
	#                                     Decimal('-4590118994.2')]}},
	#         u'distinctio': {   5: 526,
	#                            6: [9685, u'rCulxhayouvfJXLCTUVx', 2164],
	#                            7: {   5: u'fyFVHQQfMrZMfkWWDxcI',
	#                                   6: 3827.5,
	#                                   7: [u'GYVDEJoJZRODfOhfIEpE', 6296]}},
	#         u'impedit': {   7: 2998,
	#                         8: [   u'nyDWeKPrABtlkkBILyNh',
	#                                u'EuWraOHRGTJKDThPUluS',
	#                                u'pcOoodSrFgEfqZCtaSpU'],
	#                         9: {   7: u'hJlzyepuTeyZhiNkYuFc',
	#                                8: -3908.55733702,
	#                                9: [9194, 3992]}},
	#         u'libero': {   3: datetime.datetime(1994, 9, 20, 15, 24, 40),
	#                        4: [   Decimal('17.5'),
	#                               823403547278.333,
	#                               u'ZAqnPHWmECrAJzQIBVyL'],
	#                        5: {   3: datetime.datetime(1973, 6, 21, 21, 24, 43),
	#                               4: Decimal('0.40200241934'),
	#                               5: [   datetime.datetime(1976, 9, 24, 20, 31, 52),
	#                                      Decimal('-7.5245384176E+11')]}},
	#         u'quibusdam': {   4: Decimal('-685637406.618'),
	#                           5: [   5800,
	#                                  6932,
	#                                  datetime.datetime(2018, 10, 26, 17, 54, 37)],
	#                           6: {   4: -8654690.67341,
	#                                  5: Decimal('-86715820.4'),
	#                                  6: [2566, u'hiFGJbHhqQbZcxmmCgGn']}},
	#         u'quos': {   1: datetime.datetime(1995, 8, 14, 0, 21, 51),
	#                      2: [877.2364682, 61176214.889, u'EmzBTUXNkyVbZiabrLSi'],
	#                      3: {   1: 8910,
	#                             2: u'EeFhiHTozhALsBlSZHzr',
	#                             3: [-24321193.4576317, -4651534209008.8]}},
	#         u'reiciendis': {   9: u'tvkGkVrgirKPlorzeUCO',
	#                            10: [   u'uAiUGjhfhxwXrPxPOakS',
	#                                    -72710803463521.0,
	#                                    u'http://gardner.com/app/about/'],
	#                            11: {   9: Decimal('-9.01891698908E+12'),
	#                                    10: u'UDGnRSgLqrdViIZnSOmz',
	#                                    11: [   u'YzJqCfMnRWzHnNwZtTWH',
	#                                            27165197084172.0]}},
	#         u'repellendus': {   0: u'wMJZjSbaGSIoHrEZDZnq',
	#                             1: [   u'KoWomPQGBQwdoECkQDmj',
	#                                    u'qyARPkedauEypYdbumLS',
	#                                    datetime.datetime(1985, 3, 23, 14, 38, 56)],
	#                             2: {   0: u'BQdOYSjxpBiNzsCNVYma',
	#                                    1: 2947,
	#                                    2: [   u'SVcIPCGgluwMZqwEwUeT',
	#                                           u'https://moss-horne.com/author.html']}},
	#         u'sint': {   8: datetime.datetime(1988, 11, 3, 0, 49, 7),
	#                      9: [   u'xAEVUflxweacuWOowrPH',
	#                             u'BvxtNtJlXFaFjZzFpJCn',
	#                             u'qdodson@yahoo.com'],
	#                      10: {   8: Decimal('-60.72'),
	#                              9: datetime.datetime(2016, 5, 28, 13, 13, 10),
	#                              10: [   Decimal('35.72834743'),
	#                                      u'https://www.wright.net/explore/blog/main/home.jsp']}},
	#         u'voluptates': {   6: u'sxzcvACLCosRexvvaJWt',
	#                            7: [   u'zpBOOZRDhuCBDrNJXNhv',
	#                                   u'sherrischroeder@hammond.net',
	#                                   6019],
	#                            8: {   6: 8263,
	#                                   7: Decimal('66101.57107'),
	#                                   8: [3401, Decimal('99222710.3478')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'PaBMheJUlsuyxzrWlFDN',
	#     369,
	#     414,
	#     7305,
	#     u'IQmFrEqrENIHItHpXnUF',
	#     u'alexander72@jordan.com',
	#     u'VUqPgbGnCtvhSBIOFOzo',
	#     u'palmerkathy@hotmail.com',
	#     u'pJkzOqOQEltaxYzrTYIF',
	#     5299,
	#     datetime.datetime(1990, 2, 18, 19, 7, 52),
	#     u'rscott@gmail.com',
	#     1012]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'https://reeves-cunningham.com/wp-content/category/homepage.php',
	#     u'GIVWthpDZtkvRpkPXKFs',
	#     Decimal('468.796'),
	#     Decimal('2.33786312741E+12'),
	#     u'https://chase-lowe.com/category.php',
	#     u'https://guerra-jones.com/',
	#     u'gUSlWQBqXBpqJjRpnrRj',
	#     3261,
	#     4735)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'hmIuuKBCtIKDaHsPQIGt', u'ronald71@gmail.com', u'rolson@yahoo.com', u'http://www.avery.net/category/', Decimal('-771007666.525'), u'SGPqNNiimbEtHZSCLokM', u'tyler74@gmail.com', u'oyybiybczSXcLcxfBPWV', u'BFoeOypeizCsFQcVaItg', Decimal('3.507641')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'amet': 1703,
	#     u'cum': u'vpDDVFWwUgFDXPsXsayx',
	#     u'incidunt': u'xLXspnbTFCEwTruIhfJb',
	#     u'iure': u'YnGoPZeBtyglzCbPVuRk',
	#     u'maiores': u'cUrzCpurGpyeanbxfUjp',
	#     u'nisi': u'MxXVSvxCundIoqYXMWpQ',
	#     u'perferendis': -83110832476480.0,
	#     u'quas': datetime.datetime(1994, 12, 26, 10, 59, 15),
	#     u'totam': 7494}

	fake.pyint()
	# 9326

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'426-06-1695'

	fake.ein()
	# u'90-7144550'

	fake.itin()
	# u'980-83-9616'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2014-07-26 17:11:41 Firefox/3.6.6'

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

	fake.opera()
	# u'Opera/9.49.(Windows NT 5.1; li-NL) Presto/2.9.166 Version/11.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/53.0.808.0 Safari/5362'

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

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4 rv:2.0; mn-MN) AppleWebKit/531.28.6 (KHTML, like Gecko) Version/5.0.2 Safari/531.28.6'
