
Language en_US
===============

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

::

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

	fake.building_number()
	# u'404'

	fake.street_address()
	# u'49003 Harrison Circles Suite 999'

	fake.postalcode_plus4()
	# u'05342-2083'

	fake.city_prefix()
	# u'West'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'New Valerieton'

	fake.zipcode_plus4()
	# u'72277-4854'

	fake.state_abbr()
	# u'KS'

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

	fake.street_suffix()
	# u'Parks'

	fake.city_suffix()
	# u'berg'

	fake.military_dpo()
	# u'Unit 8899 Box 1742'

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

	fake.country()
	# u'Taiwan'

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

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

	fake.postalcode()
	# u'46840'

	fake.address()
	# u'15021 Romero Drive Suite 000\nBryantborough, AR 01106'

	fake.state()
	# u'Ohio'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Thompson Court'

	fake.zipcode()
	# u'39688'

	fake.postcode()
	# u'94857-7220'

	fake.military_apo()
	# u'PSC 3743, Box 5972'

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

::

	fake.license_plate()
	# u'SQP 414'

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

::

	fake.bban()
	# 'ZVKR3145209531731'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB37SMSH8904454500711'

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

::

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

	fake.ean13()
	# u'4090329830484'

	fake.ean8()
	# u'48692694'

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

::

	fake.rgb_css_color()
	# u'rgb(94,33,195)'

	fake.color_name()
	# u'Black'

	fake.rgb_color()
	# u'182,81,9'

	fake.safe_hex_color()
	# u'#ccbb00'

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#ae4e2f'

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

::

	fake.company()
	# u'Parker Group'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Devolved empowering Internet solution'

	fake.bs()
	# u'embrace leading-edge partnerships'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 13 digit\nRick Williams\n4648578628911 04/28\nCVC: 795\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NEM'

	fake.currency_code()
	# 'PGK'

	fake.currency_name()
	# 'Russian ruble'

	fake.cryptocurrency_name()
	# 'Vertcoin'

	fake.cryptocurrency()
	# ('USDT', 'Tether')

	fake.currency()
	# ('LRD', 'Liberian dollar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 18, 5, 47, 53)

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

	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(2002, 2, 26, 6, 59, 13)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2016, 7, 4)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 3, 8, 17, 32)

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

	fake.day_of_week()
	# 'Wednesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 4, 30, 1, 27, 30)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 12, 30, 22, 37, 6)

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

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1999, 9, 18)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 2, 17)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1993-09-28T06:52:04'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2017, 12, 27)

	fake.month()
	# '08'

	fake.year()
	# '1971'

	fake.day_of_month()
	# '17'

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

	fake.timezone()
	# u'America/Regina'

	fake.century()
	# u'XIX'

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

	fake.time_object(end_datetime=None)
	# datetime.time(20, 7, 27)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 4, 17, 3, 33, 34)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2009, 5, 9, 8, 56, 25)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '13:57:16'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 7, 20, 38, 24)

	fake.month_name()
	# 'March'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1364, 1, 8, 17, 43, 36)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(13184, 49740)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/natural/stuff.pages'

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

	fake.file_name(category=None, extension=None)
	# u'feel.png'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'pricejeremiah@hotmail.com'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'rgregory@winters.com'

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

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

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

	fake.uri_extension()
	# u'.jsp'

	fake.uri_page()
	# u'category'

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

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

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

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'bergkeith@thompson-hernandez.info'

	fake.domain_name(*args, **kwargs)
	# u'montes-lyons.net'

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

	fake.domain_word(*args, **kwargs)
	# u'cooper-delgado'

	fake.slug(*args, **kwargs)
	# u'allow-cause-house'

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

	fake.company_email(*args, **kwargs)
	# u'marc31@frederick-bell.biz'

	fake.uri()
	# u'https://hull.net/posts/about.jsp'

	fake.ipv6(network=False)
	# '23f4:9891:d3dc:8e69:c214:b5fc:75c1:203'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'chelseyford@example.com'

	fake.mac_address()
	# u'90:99:e5:c8:08:21'

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

::

	fake.isbn10(separator="-")
	# u'1-4870-0367-6'

	fake.isbn13(separator="-")
	# u'978-1-76434-841-6'

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

::

	fake.job()
	# 'Higher education careers adviser'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Something rise computer determine help idea. Everybody sometimes civil person. Top police question late focus.\nStock just represent receive. Cell never behavior will movement big go.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Door entire myself him take debate. Face use pattern often while leader wrong. Pick course detail work during series.',
	#     u'Fly brother first history and. Including husband around from instead kid.',
	#     u'Last term chance color. Bad step toward race yes now. Drive poor the especially management store.']

	fake.words(nb=3, ext_word_list=None)
	# [u'tree', u'opportunity', u'wear']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Particularly short administration tough leg trade dream.',
	#     u'Door personal chair wide five event page red.',
	#     u'Myself job fall face outside strategy.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Behind nearly various drive accept. Everybody source kid born perform compare interest early.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Network oil single this.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'o#&IV7Lb+3'

	fake.locale()
	# u'raj_IN'

	fake.binary(length=1048576)
	# bytearray(b'KbeB\xd7\xca$\\7\xeb\x19e\x903-\x8f\x12R\xb4\xc8\xf2h\xb8Ck\xd0\x01\xd5\x13\xfe5\xcf\x16.\xa7_8\xa7\xdf2i\x95\xca\xe8jo|\x8c\xc4sS3\xf4\x1cRR|B\x1c\xd1\x05\xa9\xb9l\x12\x16\xdb\xef\xcc%\x18k\x90\x97\xe4\x8d\xb6\xc2Q\x01\xee\xd1\xaf\xdd"\'\x96\x0bw\x83\xbau\x9c\x83\xc2/\x91\xcc\x19\xe4n\xb9\xfb\x16\xfe\\\x14\xd5\xbc\xc2\x03b\x98\xdaO\xe3\xb8neI H.\xd8S\xa2\xfd\xcb\xcc\xc5\xdf\x9b\xa1\xe3\xd3\xc2\x11\xb7\xb8\xd2\x9b|\x11\xcf\xf4\'\xeeSo[[\xd2\xd9\xc8\xffo\xbdk\xc4\x1a\xb4=\x90\xf9&\xa4\xa9\xbb\xf8\xe0\xbbNt8\xe2n\t;\x05\xad\xe5\x1a\xab\xe1*\x84\xf1\xae}\xd7KO\xf8nG\xfc\xe7\xdeZj\x13\xe2\xe9~\xdep\x0eX\x1c\x17\xb4\xa2b\xcc\xad\x82\xb5\xd4\x87\x12\xf8\x97\xc0\x06\x92V|v\xe2v\xa1\xa7\xcb\x7fU\x12\xf8v\x9d\xe3\x95\x80\x84\xb2\xad5\x7f\xe3\xe4,\xd7\x8d1\xc9\xe1\x89fS\x85\xedul\xa9X\x7fK<\x15\x18\x01\x03\xfa\xf0\n\xad(m~5\xbaH\xa1\xcd\xe2\xabP\x8b\xfeK8\x80c\xed\xac\xa0\xe7\x03\x8d\xa7>\x08\x19\\\x99\xbd\x8ed\x8a\xe3K4bc=\xf4y%\xcf(\xe7H\xd3\x1e\xa6p\xa1\x0b\xa17m\x1e{\xb3\n{"1U\xcdW\x00\x97]\xde\xa3\xe8\x86\xae\x97|w\xe7\x90\x8d\x9a/\xb9\xec\xd6\xf9\xcf\xaa-6\xc1z\xbc\x1d\xf5!\xceV_\xe7j\x98\x97\x9cS\xcd\x8f\x8c\x14@A\xdc:^nl\xe1\x00P\x1d\x10\x04\xb2\xe4\xe4*Do\x94\xd6R\xe2R^k\xa7oBH\xcf\xb2\xb7\xcb\x93\x82\xc9\xdd$\xd3\x0fD\xa1Hd\xfc\xbex\x1a\x15\x9a\x0b\xc5gL6\xca\x11\xf6\xc3\xf2\x9e\x84\xb26""*\xbb\xd0k\xecy\xdf\x8b\x1a\xea\xa9\xa9\xee\xe9\xe0\xbd=\x9d\x154B\x918\x0f\xd3]\xe1\xbb\xd8\x88\x14\x0e\xaa\xbbkEsz\x12\xc5\xab\x9e:?\x7f\xc9\xf1\xfd\x03\xe1\xbb-\xa97H\xae\xf1qF\xb3b\x9f\xfe\x94\xba\x98\xf5\\w\xd4\x8e\xe9n\xfc\\\x1a\x87\x1c\x1d\x0c\xa7\xe1i\xb6\x9c\xfb\x96\x863\xbaB\x14\xa5}\x15\xf9\x07\x84\x99\xf5\x8e\xf1):\xa9+A\xea#z?l\x9dW\xd8I\\\xf6\x12\xac\xe1\xda\xcb\xd8Yn\x08B\xac^\x05\xf4.\x7f\x02m\xc5\xe66\x81\x81\\1%\xf6(~\xd5\x1e\xb73\xfc\x05J\xf1\x8bn\xa2\tf\x88\xed\t\xca\x04c\x0b\xf5]\x88V\xef\xcaIu\x92\xe6\xf4\x90\xe9E\xf3{\xcd\xce\x17\xf8\x034m\x1f\x9f\xfc\x8e\x1c\x95\xd2\x8d$\xe3yP\x8b\xd7\xf4\xa4\xdc\xd2\x87\xd9\xea.\x8a\x1co\xdf\xc8\xadF\xa0\x1c\xd1\x07\x18\xc8c\xfd\x83\xbf\x98\x8e\x90\xe6\xfd\x16\xf7@ZSc\xc9\xd9\xff\xc2\xff6o\xf5\x06A\x93\x9c\x06\x97\t\x91;\x9dX\x1e\x1a}\x1f[\x02%\xe8\x90\xd1\xe1\x07\xe6C\xcc\x91\x0f\x81\xcf\xa0d\xc2\xf8\x00&\xab\xea\xd2r\x9cJ\xa9\x17\xb5\xd4\x8b\xd7\xbc\x97\x0b\xa8\xd7\x04A\x000\xbbI\xb9\xcb\xd7\x88\xe8W\x81\xe00\x8e\xf5\xa6\x01d\xb6)*\xfb\x972\x96\x98\xf7\x9c\xa1k\xba\xd1\x19.\xbeL`Vl\xe5\xbc\xf1\xed\\@\x03j\xf3\xe1\xcc\x13\xd4\xad\x11T\x1b\x85\xf5\xe6\xc7U\x82u\x10\xf2\x11\x1b\xf5/\x14\xe0>\x9c\xca\xbb\xba\xc9\xbe}\xc3\xa6\xeeX\x99\xaf(\xa1\xe8\xc2\x18\xed\xe10b6c\x9d\x8fA\x11O\xbajrm\xf49<a\x94\xa6x\x105\xc7\x99\x8dd1\x14C\x0e\xdfR\xf6\xeb{4mt\xdf\xb0X0G\x8c\xb9\x81:\xfdc\xcb\xfa|=|\xd2\xcb9\x12\xb8\xd0\xd9\xbb\x158\xd9\xac\x06\x10pE\x9f\xe1\x02\xe0>\xa9\xaa\xa6O\xd2\xa7Rp*g>\x1b\xbeHS\xd2\xa7\xc8\x03\xdf\xb9\xaf\xdf:\x0eH;)^\x08\xcf\x12\xf5Q\x8c\x94O\xdauTw\xcc}x\x9d\xfe\n\xed\n\x9d\xda\xcf\x8c\xaah\xe0\x00V\nUEXKN\xdf\xb2\xab\xef\xc3\xf9kV\x8dnK^\xf8\xba\xd8\xeafL6\x9c\x18\xe1\xc8\xa8\xfd\x8a\xb1\xfc0pG\xefx?\x93\x15|\x04\xf8\xe1')

	fake.md5(raw_output=False)
	# '263b87d6b12aea8511019a7cc0f46eba'

	fake.sha1(raw_output=False)
	# '03a75d7cf28090d12a7f8499234f53ede7a10423'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '40165a7d0d559863c0a0c5e58b3f8ef90147365517a4c86f6c6562957e7507d4'

	fake.uuid4()
	# '4dd86f65-c8f4-4015-c156-fc2febf1cecf'

	fake.language_code()
	# u'fi'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Molina'

	fake.name_female()
	# u'Gail Watson'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Brandi Garrett'

	fake.suffix_female()
	# u'MD'

	fake.name_male()
	# u'Dakota Golden'

	fake.first_name()
	# u'Emma'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'DVM'

	fake.first_name_male()
	# u'Daniel'

	fake.first_name_female()
	# u'Brittney'

	fake.last_name_female()
	# u'Fletcher'

	fake.last_name()
	# u'Murillo'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'595-798-6179'

	fake.msisdn()
	# '8224103521431'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'15698 Andrew Drives\nNew Brandi, NV 92168-2450',
	#     'birthdate': datetime.date(1957, 7, 1),
	#     'mail': u'scottharris@yahoo.com',
	#     'name': u'Gabrielle Green',
	#     'sex': 'F',
	#     'username': u'yhuber'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'1756 Seth Corner\nRonaldland, VT 14468',
	#     'birthdate': datetime.date(2010, 4, 10),
	#     'blood_group': 'A+',
	#     'company': u'Pratt Group',
	#     'current_location': (Decimal('76.931849'), Decimal('-88.973824')),
	#     'job': 'Call centre manager',
	#     'mail': u'mirandajohnston@hotmail.com',
	#     'name': u'Brittany Burton',
	#     'residence': u'57768 Clark Course\nSouth James, KY 94810-6679',
	#     'sex': 'F',
	#     'ssn': u'308-29-7640',
	#     'username': u'tracy73',
	#     'website': [u'http://obrien-carter.net/', u'http://www.alvarez-lamb.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'https://adams.org/',
	#     u'TxBIahBpsGXmxArCIAKo',
	#     Decimal('86204143609.6'),
	#     u'TDQqrIZbIjeGfwNPeVmf',
	#     5218,
	#     u'zHeqkQOFbcKZZdPxQBoV']

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

	fake.pystruct(count=10, *value_types)
	# (   [   -781983341.3,
	#         8074,
	#         u'lrXcqYVvmIqZhhoJiCNi',
	#         640,
	#         u'HeAepReisKGrraJYchrE',
	#         datetime.datetime(2000, 2, 13, 16, 26, 26),
	#         u'JIvPWvVRwdjgzFSPxtwd',
	#         u'brendaferguson@yahoo.com',
	#         9535,
	#         u'aTFRqPtwkYgCkKjulVNq'],
	#     {   u'again': u'http://garcia.com/main/author.php',
	#         u'agency': 897,
	#         u'contain': u'http://www.crawford-lindsey.com/register.php',
	#         u'girl': u'https://www.perkins.com/blog/main/home.php',
	#         u'keep': u'SbFMooNJKkXwrmJKjrlb',
	#         u'name': datetime.datetime(2000, 8, 29, 3, 26, 57),
	#         u'responsibility': 6692,
	#         u'seem': datetime.datetime(1988, 3, 29, 6, 5, 47),
	#         u'tend': u'https://sosa.com/category/',
	#         u'training': u'xward@williams.biz'},
	#     {   u'arm': {   9: u'uVQwxcacoQRfMAfYQMbO',
	#                     10: [9185, u'ffAHCVnWqabcKUQRbwbN', 6527],
	#                     11: {   9: u'rojashunter@holland.com',
	#                             10: u'http://www.adams.com/privacy.htm',
	#                             11: [3244, 396507206.43709]}},
	#         u'ask': {   4: u'nsQbMlRQdyYCjpSVEAIF',
	#                     5: [5176, 2669, u'NnTkszIdWPpnfYvwutJh'],
	#                     6: {   4: u'jAEvodqVLkogkWCMVvMr',
	#                            5: u'BliaptBCjQGJUBScMERU',
	#                            6: [Decimal('-4.22928403109E+14'), 1104]}},
	#         u'enough': {   7: -4.46395725,
	#                        8: [   u'eIuaRtOemLEoGTFjFPgb',
	#                               u'RDQhNFUPHnbteFRgvdQL',
	#                               u'GWHWhaBrPVJhhyJrLhFG'],
	#                        9: {   7: u'pyHhgxlhMCsTDWgXAxax',
	#                               8: u'mking@yahoo.com',
	#                               9: [8559, u'tracey26@gmail.com']}},
	#         u'every': {   2: 98342.9,
	#                       3: [2011, u'APiyWEQoVRkXhneKXFxJ', 5375],
	#                       4: {   2: u'http://www.butler.com/wp-content/search/about/',
	#                              3: datetime.datetime(1985, 1, 17, 17, 9, 38),
	#                              4: [505048.77, Decimal('-998.0')]}},
	#         u'for': {   1: u'garrett88@nelson.org',
	#                     2: [   u'PxKZagdkqSVLNbzzjThr',
	#                            -884008.7147173,
	#                            u'austin56@gmail.com'],
	#                     3: {   1: -2295741352.3444,
	#                            2: u'https://www.gutierrez.biz/wp-content/login.html',
	#                            3: [   Decimal('-2.56875'),
	#                                   u'CeiiETsNFtRIAsUWMNnI']}},
	#         u'force': {   6: 4919,
	#                       7: [   u'scott58@gmail.com',
	#                              datetime.datetime(1984, 10, 18, 21, 1, 39),
	#                              u'nealdale@yahoo.com'],
	#                       8: {   6: 2549,
	#                              7: u'HEXUtVXjLyTFyLLqeHum',
	#                              8: [   8271,
	#                                     u'http://www.payne-valdez.com/login/']}},
	#         u'movie': {   3: u'http://wong.com/main/',
	#                       4: [   datetime.datetime(1986, 2, 2, 8, 17, 47),
	#                              9904,
	#                              3598],
	#                       5: {   3: u'rwiRcyuhHChPeiKgjGaR',
	#                              4: u'GIkxIkreXddUHmXQpSBK',
	#                              5: [   u'gryyAnjLSlprQLFlHjUP',
	#                                     Decimal('-2.00282411886E+14')]}},
	#         u'party': {   8: u'abigail10@yahoo.com',
	#                       9: [   5478,
	#                              u'http://www.valdez.net/register/',
	#                              u'KnGvmoHaUhsEVmqyLYiR'],
	#                       10: {   8: 8059,
	#                               9: u'https://davidson.com/about/',
	#                               10: [   u'brian16@wolfe-rodriguez.com',
	#                                       Decimal('59500049719.6')]}},
	#         u'president': {   5: 3751,
	#                           6: [   u'http://www.sanchez-carlson.biz/login.html',
	#                                  4162,
	#                                  u'http://elliott.com/'],
	#                           7: {   5: u'NeVYzogMdCRRTkQWPevx',
	#                                  6: datetime.datetime(1978, 10, 14, 6, 33, 11),
	#                                  7: [   Decimal('-5891.891966'),
	#                                         u'XpzUFPzlEeVDqvEPqCtO']}},
	#         u'through': {   0: 7901,
	#                         1: [   u'qjsuFmNIBSKwmnhvHfGK',
	#                                u'chrisowens@hotmail.com',
	#                                u'http://www.rivera-parker.biz/explore/post/'],
	#                         2: {   0: datetime.datetime(1971, 4, 21, 8, 3),
	#                                1: 782,
	#                                2: [420.922, 6806]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'nathanknight@gmail.com',
	#     u'eAwlDvomgcakgyWChSEm',
	#     u'http://www.hanna.com/tags/search/',
	#     9733,
	#     4595,
	#     u'uoqMsENUhlttiCCZLnTp',
	#     6340,
	#     u'https://www.moore.net/login.jsp',
	#     datetime.datetime(1996, 10, 19, 22, 36, 21),
	#     datetime.datetime(2010, 12, 27, 11, 54, 46)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   3011,
	#     u'mZdOuneXvEkANpNELyAX',
	#     7499,
	#     402,
	#     u'VRfKyomhNnLeEFmHlFfA',
	#     u'https://www.lewis.com/search/',
	#     u'EnGOsvCQJQpyFiHVFdsl')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'http://smith.net/', Decimal('959909462.916'), u'XaHMuWjTaeKXUiQPQAEg', datetime.datetime(2010, 12, 15, 10, 19, 10), u'FiUjsbdldZeSdvybCQRN', u'https://www.wilson.net/category/category/', datetime.datetime(1976, 6, 24, 4, 10, 14), u'austinwilkins@watson.org', u'ybEJeCfAYntfciXiKCyS', u'MMDIXLnLYDMNbYQxSIVY'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'better': datetime.datetime(2000, 12, 30, 1, 0, 37),
	#     u'central': u'http://www.thomas-olson.biz/',
	#     u'could': datetime.datetime(2010, 11, 4, 22, 11, 3),
	#     u'decision': u'thoward@bradley.com',
	#     u'food': u'anthonywang@hotmail.com',
	#     u'life': -98527589.26,
	#     u'sound': -224421.3691286,
	#     u'spend': u'CpXoxtxUrvwFDAtGnqpD',
	#     u'star': u'BuEfyKDFdWyBAbePvPWi',
	#     u'trip': u'qTEIkzqjscYfSMIjsihQ'}

	fake.pyint()
	# 1761

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'178-48-0724'

	fake.ein()
	# u'03-1835481'

	fake.itin()
	# u'972-72-8806'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.2; wae-CH; rv:1.9.2.20) Gecko/2017-06-02 05:37:22 Firefox/3.6.19'

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

	fake.opera()
	# u'Opera/9.61.(X11; Linux x86_64; hsb-DE) Presto/2.9.162 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 98; Win 9x 4.90'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Win 9x 4.90; Trident/3.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; my-MM) AppleWebKit/533.34.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.34.3'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_3) AppleWebKit/5342 (KHTML, like Gecko) Chrome/53.0.801.0 Safari/5342'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; pap-CW) AppleWebKit/533.8.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6533.8.3'
