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

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

::

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

	fake.building_number()
	# u'656'

	fake.street_address()
	# u'0979 Jones Canyon'

	fake.postalcode_plus4()
	# u'71756-8986'

	fake.city_prefix()
	# u'South'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'Kevinport'

	fake.zipcode_plus4()
	# u'53622-0268'

	fake.state_abbr()
	# u'RI'

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

	fake.street_suffix()
	# u'Plains'

	fake.city_suffix()
	# u'port'

	fake.military_dpo()
	# u'Unit 9471 Box 8265'

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

	fake.country()
	# u'Macedonia'

	fake.secondary_address()
	# u'Suite 012'

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

	fake.postalcode()
	# u'90167'

	fake.address()
	# u'393 Brandi Islands\nNorth Frank, NY 06992'

	fake.state()
	# u'Florida'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Jeffrey Lakes'

	fake.zipcode()
	# u'15377'

	fake.postcode()
	# u'95030'

	fake.military_apo()
	# u'PSC 9406, Box 1572'

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

::

	fake.license_plate()
	# u'008 PBA'

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

::

	fake.bban()
	# 'ADAG4870428922133'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB69MLPI6536954004031'

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

::

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

	fake.ean13()
	# u'8119601555641'

	fake.ean8()
	# u'33314402'

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

::

	fake.rgb_css_color()
	# u'rgb(6,22,92)'

	fake.color_name()
	# u'DarkBlue'

	fake.rgb_color()
	# u'11,134,63'

	fake.safe_hex_color()
	# u'#22cc00'

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#d0c4fe'

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

::

	fake.company()
	# u'Flores, Padilla and Richardson'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Multi-lateral full-range open system'

	fake.bs()
	# u'streamline enterprise communities'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Mastercard\nVeronica Adams\n5391223368829887 06/19\nCVV: 811\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'FTH'

	fake.currency_code()
	# 'BOB'

	fake.currency_name()
	# 'Nepalese rupee'

	fake.cryptocurrency_name()
	# 'Bitcoin Cash'

	fake.cryptocurrency()
	# ('UBQ', 'Ubiq')

	fake.currency()
	# ('TRY', 'Turkish lira')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 23, 12, 17, 1)

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

	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(1996, 9, 16, 5, 46, 4)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2016, 1, 6)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 13, 15, 56, 53)

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

	fake.day_of_week()
	# u'\u0627\u0644\u0625\u062b\u0646\u064a\u0646'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 7, 27, 15, 44, 29)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2009, 10, 13, 15, 21, 10)

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

	fake.am_pm()
	# u'\u0635'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1988, 11, 6)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2002-07-21T20:55:37'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2005, 3, 20)

	fake.month()
	# '08'

	fake.year()
	# '2013'

	fake.day_of_month()
	# '06'

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

	fake.timezone()
	# u'\u0623\u0648\u0631\u0648\u0628\u0627/\u0633\u062a\u0648\u0643\u0647\u0648\u0644\u0645'

	fake.century()
	# u'\u0627\u0644\u0631\u0627\u0628\u0639'

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

	fake.time_object(end_datetime=None)
	# datetime.time(20, 36, 41)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 6, 20, 0, 42, 37)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1989, 8, 3, 11, 33, 10)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 31, 7, 42, 57)

	fake.month_name()
	# u'\u0645\u0627\u0631\u0633'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1074, 5, 23, 8, 20, 26)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(1779, 23537)

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

::

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

	fake.mime_type(category=None)
	# u'model/mesh'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/facere/vero.mov'

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

	fake.file_name(category=None, extension=None)
	# u'atque.pages'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/570x6'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'lopezsandra@hotmail.com'

	fake.url(schemes=None)
	# u'http://www.thornton.com/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'post'

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

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

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

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'shannon54@mejia-edwards.biz'

	fake.domain_name(*args, **kwargs)
	# u'hart-reed.org'

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

	fake.domain_word(*args, **kwargs)
	# u'miller-hunt'

	fake.slug(*args, **kwargs)
	# u'expedita-fuga'

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

	fake.company_email(*args, **kwargs)
	# u'stevenvelasquez@mckay.com'

	fake.uri()
	# u'http://www.farmer.com/tag/categories/faq.htm'

	fake.ipv6(network=False)
	# '61af:6e85:7e2c:16ae:d1bd:c45a:174c:7594'

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

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

	fake.mac_address()
	# u'32:a8:c9:c3:3a:9c'

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

::

	fake.isbn10(separator="-")
	# u'1-4361-1646-5'

	fake.isbn13(separator="-")
	# u'978-1-70506-730-7'

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

::

	fake.job()
	# 'Publishing rights manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Modi aut unde consectetur. Natus maiores explicabo qui nemo ducimus. Voluptates accusantium corrupti at explicabo.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Quos iusto officiis consequatur fugit. Laborum expedita nam eveniet.',
	#     u'Cumque voluptates porro inventore. Impedit asperiores consequatur. Natus mollitia esse.',
	#     u'Ipsam cumque quibusdam blanditiis eaque. Asperiores vel impedit animi. Doloremque placeat ab laborum numquam cum. Velit tenetur quidem doloribus nulla.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Debitis architecto iure.',
	#     u'Molestias doloremque ipsa quos.',
	#     u'Voluptatibus repellat at labore reprehenderit recusandae illum.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Tempore facere minima quia. Quo labore minus excepturi soluta vero possimus harum. Animi quis vitae temporibus nulla facere iusto.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Neque enim debitis tempora.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'^hCjBeiG&5'

	fake.locale()
	# u'ik_CA'

	fake.binary(length=1048576)
	# bytearray(b'?\xcbT\x1ej\x8f\xae-\xe3\xc1i\xdd\xfa\xa9\x1aK\xe4\x86\xfb\xa2\xd9\x1c\xbd\x84\xca\x9dW\xe9;2@N\x19bwJ\xb4\xf8\x01\x82\xbb\x00\xdf\x88\xcf=h\xb7C\x10y\xf2\xec\x15F\xb6\x16\xf5i\xa6\x95\x19\x04_?\xc8\xca\xfa\xe19=\rk<\xc6\x8a\x0ft?vq+\xfd\xbc\x97\'\xf4\xf8T_\xb2E\x169X\x82\x1c\x01\x91\xc1[\x16\xca\xc4^y\xd6\xba\xfb\\+\xbe\x19Nx\xbe\xdf<\x10\x0e\xbf#\xcf\x8f\xda\xb1\xe3,/}:\x0e\xa4\x9a\x13r\x12\xa9\xc5\x0e\xdae\xc0\xfd]\x18\xbe,\xb9^pn\x8d\x98c\xc85\xdf\x88@\x1fI\x0c\xa8\xc5\x1aY\x03\xca(\xac\xfdC\xe7Y\xb6P\xc6\xc4\x95>\xe4\xc1\x8a\xba2\xd7\xa0C\xb9\x90_A\xbc[\x1c\xe5L\x8a"\x14W\xe6X2\x908<\xb1\xe3\xb7L\x82\xe4\xb5X\xd9\x0c\x02G\x0ft\x8ejM>\x98\x1f\x15\xf1\xef\xecz\xd6\xc3(+\x8c\x90\x80s\xe8\x14\xf4t\xa7f\x9dWK\xbcZ\x7f\x02\x0eZ\x10\x16\x16\xea\x9a\xf6\x03\x82\xd0\xf9Tn\xa8\x1f\xfc\xd89\x9a5\xebn\xd4\xa1\xdc\x0e\xc0x"hc\xe0\x9e\x17\xb3(\x98OV[\xd6\x0b\x8d?#n\x90z;R\xdd\xa0\x17\xfd$s\xe3\xdb\x86\xb9n\xcb\xc2n\xe0\x12\xd7Rn|~\x98\xb0\x9b\t\x81]OB3\x12\x90\x1c\xd6\xac\x1b\r\xb7X\x05s\x10n\x91<\xbbe\xee\xec\x03\xb5p\xd8\xd6\x84\xbe\xbd\xe8\xd9\xce F\x86p"\x8b\x85\xdfs\x06@\xfc7\xce?u\x05Kx\x82N\xa4\xdb\x02\xfc\xc7\x15\xe3o\x83\xe6\xb8\xe9s\xd9\xde\xbb\x92\xd2u\xa3\xf4\xb5#O\x86\xee\x05\xd6\xc5\xa0\x82\xdb\x0c\xfa\xd9\x03\xc8\x02n\xbd9\x11\xcaH\x05\xe6\xef\x03\xc0\x0c\x91\xcc\x17y\x1f\xd7\xbb{\xca\xa8\xf6\x82?\xd17\xd9\xa7\xca9\xf7\xabF\x08\xa3\x01w\xe2vIe}E4cH\xdbN\xa2\xa5\xb6D\xb37)\x91\x119A|Y\xc3\xe8\xf0\xe0;\x1a7\x9f\xba\xfb\xc47j\x8c\xe9\xfc{^\xeb\xb9:\xca\xd5N\xad\x05}\xb1\x96\\\x0cn\xd22)0>\xb0\xab(\x12\x00\xe3\xc4\x88\xc7N6\xf9\xadr\xa2\x99:\xb0\xca\r\x0b\x8a\xfe\x85\xe6\xe4\xdd\x1fDH;\x7f\xcc\xba\xdcB\x86;i)\x86\xa0\x0e\xc0\xad\xc1\xc1!\'\xe9\x7f\xed\x0eR#@\xb66}\x07|E\xb7\x10\x1e\x98\xb9\xea\xa5\xe5\x1d\xce\xae\xd7\x0bgO\xc6s\x9f\x982\xba`tr\xb2}\xd0\x07\xff98\xfa\xfa\x11>\xad\xe9\xed7ST\x8d\xc7\x93X]\x7fU\xb4d\xe3\x85JRq)\r\x804;\xcbb#\xca8\xcb\x1f\xc1\xb7\x8e\xd9`\xff\xe7\x04\x96V\xbe\x02\x0f\x82\x9c\x86*\xb7\xae0\xba\xb2\x98\xce,\x89\xdb\xc44\xcf\x03\xd3\x96\xae\xd1\xdc\xa5s\x88\xdb?\x9c\xa0\xfdi\x82M3\xad\x80\xd2\xc0\xd0\xee_I\x00\xbaV\xefG\xd8\xd1\xff}\xdf\xc1\xdc5\x9e\x86\xdd\xec5\xe1-K\xec\xdf\x90\xe0`>\x18\x91\xb26t\xf5\xd4\xd8\x13\x8a8/\x0b\x93ZU)\x0f\x11>1\xc1\n\xd1\xa5\xcc\x91\x95\x80\xaeP\x9e1\xe6@c\xa7jk;N\xac\xd8I\xf3\xfa(\xf1\x90/\xe5\xc3\x94\x01dd\xa6\xae\xc4\x15\xe3\xab\x9a\xbblV\xd7\x81F\x19\x8b\xebOw\x99\xd2Z6uz\x0f\xb4\xf4e\x00+\xd7Z/\'\xfbz29\x16w|\xf7\xc0\x8cfC\xca\r\xa2\x83|\xee\x88\xd8\x03\xdc\xf9(o\xddU\x8c\xd6(\xe8\xe9!u\xb5\xcc\xfc\x15\xe6\xcd\x80\xb7\xe9\xb6\xd4\\\xd2Tu<jI\x06\xd7Qd\xbe<5T\x1aH\x85\x86p\x83\xc4\x00\xc5g\x90\x1c6\x88\x02R\x19<\xbc\xfcK\x98\x15\xc9F\nU\xdf\xde~T\xce]A\x1c\x17:\x04\xc9)IV-\x9c\x9e\xc5^\xa2\xb2@\xaf&h\xed/\xa8zMD\xc5,\x14Hm\xf5=w\xc0i\xcf\xfa\xe2\xb9A"\x9e\xe0-"\xda\xb4\x08\xc7.{\x8bk\xc2\xa8\xa4\x9a\xdc\xf6\x03\xb9\x18i\x85\x00\x84\xa7\x12*\xb1\x99\x17\x02\xfc/\xaa\x1ag\xbeH\x95\xa6\x9a\xe1\xb6\xe5\xd07\x95\x81\x03$\xfe\x0e\xe4\x1a\xb4\xa0\x97\x07\xafn\xcf\x1f\x91')

	fake.md5(raw_output=False)
	# '94c722ecb64141ff5905b54dbdc609ac'

	fake.sha1(raw_output=False)
	# 'cb23e271073384875f073fa9008807f1fc3e2349'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# 'a0457c41-aaf6-e7e0-c1ec-50326f301cae'

	fake.language_code()
	# u'mr'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Wright'

	fake.name_female()
	# u'Kathleen Guzman'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Barbara Suarez'

	fake.suffix_female()
	# u'MD'

	fake.name_male()
	# u'David Campbell'

	fake.first_name()
	# u'Charles'

	fake.suffix_male()
	# u'DDS'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Benjamin'

	fake.first_name_female()
	# u'Carmen'

	fake.last_name_female()
	# u'Villa'

	fake.last_name()
	# u'Rush'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'860-208-6051x6175'

	fake.msisdn()
	# '3139886441781'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'3196 Andrew Isle\nJacobburgh, NV 64180',
	#     'birthdate': datetime.date(1967, 8, 1),
	#     'mail': u'bparker@yahoo.com',
	#     'name': u'Maria Parsons',
	#     'sex': 'F',
	#     'username': u'kholland'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'90967 Nicole Parks Apt. 894\nSouth Timothy, DC 28449-4490',
	#     'birthdate': datetime.date(1928, 8, 24),
	#     'blood_group': 'B-',
	#     'company': u'Brown Ltd',
	#     'current_location': (Decimal('-25.3914675'), Decimal('-107.396539')),
	#     'job': 'Medical illustrator',
	#     'mail': u'alan25@yahoo.com',
	#     'name': u'Jesse Sanchez',
	#     'residence': u'4732 Burton Shoal Apt. 569\nJamesside, PA 70352-3131',
	#     'sex': 'M',
	#     'ssn': u'515-39-8689',
	#     'username': u'jameswallace',
	#     'website': [u'http://www.vazquez.biz/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'jeRPjNAinXXXPSmcMJzs', u'smOFKUdQGspAZTuGMvAW', u'lyaYHSVZiycJLeGfHRMO', u'susansheppard@hotmail.com', u'http://www.kennedy.org/register/', 1113, u'michelle67@gmail.com'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   -5258047766296.0,
	#         1105,
	#         datetime.datetime(2018, 8, 15, 9, 15, 10),
	#         5769,
	#         u'SxNbIEVTuPerGtutBtIg',
	#         datetime.datetime(1972, 2, 15, 16, 24, 8),
	#         8145,
	#         5129,
	#         3154,
	#         u'JPiPnmhTQsOvBjTZXvXT'],
	#     {   u'ab': u'rJGBimrlKdaIzHrqFPtG',
	#         u'alias': u'hieTYigWIUgERiALHvVy',
	#         u'ducimus': u'ijaEXujuSHmUYDvdNnPc',
	#         u'earum': u'WqCSzSPVeDtYLYJHeIGr',
	#         u'expedita': 8537937.1,
	#         u'fugiat': u'hJIgsSZkTduzmmuWuISM',
	#         u'id': Decimal('-149455938028'),
	#         u'magni': -45985171.18,
	#         u'omnis': 2044,
	#         u'sapiente': Decimal('-9.464687')},
	#     {   u'ad': {   4: 2757,
	#                    5: [   u'https://atkinson-ray.com/about/',
	#                           u'rebecca73@lee.com',
	#                           u'patricia54@hotmail.com'],
	#                    6: {   4: u'AFrNMNhoUYlKkQhxwFVg',
	#                           5: 7506,
	#                           6: [   u'BDCBpuPgoJyjTFgrolRj',
	#                                  u'bbmqfMxcDpOYectpKTOG']}},
	#         u'atque': {   7: u'http://www.cordova.com/main/blog/blog/homepage.php',
	#                       8: [   32380757738.2359,
	#                              u'jill33@gomez-palmer.net',
	#                              datetime.datetime(1990, 7, 1, 9, 44)],
	#                       9: {   7: u'mIFSUomlyXNECePDnRiK',
	#                              8: -241031.62152486,
	#                              9: [   datetime.datetime(1988, 6, 25, 18, 50, 31),
	#                                     datetime.datetime(1983, 10, 21, 14, 6, 25)]}},
	#         u'debitis': {   6: u'qFWhSNymiQJaeWCbKCeq',
	#                         7: [451309738892892.0, u'mphillips@yahoo.com', 3629],
	#                         8: {   6: u'chQhARIwEDhBbBOcWSjM',
	#                                7: u'bvJvdLOOcADzkijFrpBE',
	#                                8: [9539, Decimal('-668632.734722')]}},
	#         u'fugiat': {   2: -7305.9928,
	#                        3: [   8141242.5,
	#                               Decimal('486077268.23'),
	#                               u'iQBjKuFClfouqFSHVmzc'],
	#                        4: {   2: 492543695.1,
	#                               3: datetime.datetime(1980, 5, 21, 18, 50, 59),
	#                               4: [6809, Decimal('1.57826175343E+13')]}},
	#         u'nemo': {   9: u'XUDeOXxemblxMYsuPMrh',
	#                      10: [   748,
	#                              u'vlpLZAFRnYjvYWcwQJHj',
	#                              u'fIpGvctakDYqzPjNmkJK'],
	#                      11: {   9: u'markpearson@wallace-perez.net',
	#                              10: u'nGCsmHTwqGoWqkmpNwLh',
	#                              11: [   u'http://steele.com/',
	#                                      u'RPIqBIocnpbtMGnAMTAm']}},
	#         u'occaecati': {   3: 1110,
	#                           4: [   5148,
	#                                  u'QskpYDdTEPBYZaaEHKTh',
	#                                  u'yiMfpjELGWexxwpHETNf'],
	#                           5: {   3: u'https://www.humphrey-johnson.biz/',
	#                                  4: u'ericamoore@burnett.com',
	#                                  5: [   datetime.datetime(1970, 10, 2, 21, 0, 9),
	#                                         u'https://miller.com/tag/wp-content/register.htm']}},
	#         u'possimus': {   0: 1834,
	#                          1: [   u'https://cole.net/author.htm',
	#                                 u'VrLvBkZBwnagBTecvNqS',
	#                                 7196],
	#                          2: {   0: datetime.datetime(2007, 4, 2, 4, 28, 22),
	#                                 1: u'http://russell-jackson.biz/explore/app/explore/main/',
	#                                 2: [   u'jonesjames@kidd.com',
	#                                        u'cynthiahart@yahoo.com']}},
	#         u'quaerat': {   8: 3945,
	#                         9: [   u'becky86@torres-hernandez.com',
	#                                Decimal('41.3536396174'),
	#                                u'DoNOHDJaoWqbzudvAgYb'],
	#                         10: {   8: u'DfoDHUpJawBsfGPspVpn',
	#                                 9: u'https://www.barnes-gregory.biz/search/',
	#                                 10: [   u'BqwjgcpCJSWElrRrCwfW',
	#                                         datetime.datetime(1993, 12, 11, 5, 43, 27)]}},
	#         u'quia': {   5: u'https://garcia-hall.org/faq/',
	#                      6: [   u'vulHSQWLMUGBniOndqJM',
	#                             Decimal('-90647589219.5'),
	#                             u'jomyers@callahan.com'],
	#                      7: {   5: u'tTWLGNfDNavTskBlAiyb',
	#                             6: 7988,
	#                             7: [u'WfIwNewwwTQDoHOcyKQz', 9625]}},
	#         u'voluptate': {   1: u'CFsYaHSMzDFdtnCzXqRj',
	#                           2: [   8313,
	#                                  u'kwilliams@yahoo.com',
	#                                  Decimal('-729578951.838')],
	#                           3: {   1: u'ULNLtflMdzpAIlkwXVyT',
	#                                  2: Decimal('-313726.2112'),
	#                                  3: [   u'GVDsMOeENHgucScGlmrY',
	#                                         Decimal('-1047126.7615')]}}})

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

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('-7.83460149545E+13')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'http://garner.org/',
	#     u'OEcbaJcCaaQJcwePFFLF',
	#     7085,
	#     Decimal('-7.13345475027E+13'),
	#     8432,
	#     u'hkzlXLACWLHPNrQCHBSK',
	#     8.8,
	#     u'fOdszHKMGrPpTmubPpyr',
	#     u'piYowMIHZtZBLyJPWNiK',
	#     datetime.datetime(1979, 11, 22, 2, 44)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'brandi91@white-parker.biz',
	#     u'XxvSrKnVwbVwNgenvFDZ',
	#     -441159410596282.0,
	#     u'UcssMCbIdEHqROrobtBF',
	#     u'JAgWWDKAkCrrHdshGJWK',
	#     u'JIbQbeFBitRdRiPRNqVm')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'ZqiwJQrMSmhdcreVBqlG', 8365, u'sSAjFskORigVUDpnBmPS', u'JtwguGdgqRDsnCGCcRFw', u'rpGcwVAjjZcyVuwhlEvx', u'lmOJRHqQtUFOcJIflkIL', datetime.datetime(1977, 5, 19, 10, 49, 40)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'dolores': datetime.datetime(1994, 3, 27, 14, 20, 2),
	#     u'eveniet': u'https://thompson-guerrero.com/categories/faq.php',
	#     u'inventore': u'AnIDsegeIsLOCBUNiOCF',
	#     u'iusto': 8168,
	#     u'magnam': u'vnoUMJzHwmWDsDjnGFWo',
	#     u'mollitia': u'visCShRUosfyxKGAMofR',
	#     u'reprehenderit': u'eHwkbFnCMojFcrtnTuRX',
	#     u'sit': 1786}

	fake.pyint()
	# 2685

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'623-95-0460'

	fake.ein()
	# u'24-7155265'

	fake.itin()
	# u'997-76-1758'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 4.0; lg-UG; rv:1.9.0.20) Gecko/2014-05-15 11:30:38 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.77.(Windows NT 6.0; gl-ES) Presto/2.9.188 Version/10.00'

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

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

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

	fake.linux_processor()
	# u'x86_64'

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

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; oc-FR) AppleWebKit/535.30.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6535.30.5'
