
Language la
============

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

::

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

	fake.building_number()
	# u'29800'

	fake.street_address()
	# u'50902 Jasmine Park Apt. 385'

	fake.postalcode_plus4()
	# u'02444-2572'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'Danburgh'

	fake.zipcode_plus4()
	# u'91245-3028'

	fake.state_abbr()
	# u'DE'

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

	fake.street_suffix()
	# u'Place'

	fake.city_suffix()
	# u'bury'

	fake.military_dpo()
	# u'Unit 4466 Box 5823'

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

	fake.country()
	# u'Burundi'

	fake.secondary_address()
	# u'Suite 225'

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

	fake.postalcode()
	# u'00569'

	fake.address()
	# u'18561 Hill Plaza Suite 598\nLake Josephshire, HI 87136'

	fake.state()
	# u'California'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Lopez Drive'

	fake.zipcode()
	# u'74174'

	fake.postcode()
	# u'70577'

	fake.military_apo()
	# u'PSC 1307, Box 7443'

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

::

	fake.license_plate()
	# u'63D DE0'

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

::

	fake.bban()
	# 'DWWG5879620048676'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB79JSYR9496670322374'

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

::

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

	fake.ean13()
	# u'0015915956717'

	fake.ean8()
	# u'31064538'

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

::

	fake.rgb_css_color()
	# u'rgb(73,110,248)'

	fake.color_name()
	# u'DarkMagenta'

	fake.rgb_color()
	# u'186,63,6'

	fake.safe_hex_color()
	# u'#33bb00'

	fake.safe_color_name()
	# u'black'

	fake.hex_color()
	# u'#d2df46'

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

::

	fake.company()
	# u'Chen, Shepherd and Odonnell'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Centralized human-resource customer loyalty'

	fake.bs()
	# u'evolve transparent eyeballs'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'American Express\nShane James\n373957906898390 06/20\nCID: 6861\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'AUR'

	fake.currency_code()
	# 'JPY'

	fake.currency_name()
	# 'Kazakhstani tenge'

	fake.cryptocurrency_name()
	# 'Feathercoin'

	fake.cryptocurrency()
	# ('NXT', 'Nxt')

	fake.currency()
	# ('BIF', 'Burundian franc')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 27, 12, 47, 50)

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

	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(1992, 8, 3, 5, 18, 20)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 1, 12)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 6, 1, 14, 45)

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

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 9, 3, 2, 2, 14)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 5, 6, 16, 26, 44)

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

	fake.am_pm()
	# 'AM'

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

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

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1992-04-29T21:20:09'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 6, 23)

	fake.month()
	# '04'

	fake.year()
	# '2017'

	fake.day_of_month()
	# '11'

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

	fake.timezone()
	# u'Asia/Nicosia'

	fake.century()
	# u'VII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(1, 50, 44)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 4, 23, 0, 50, 7)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2014, 2, 12, 6, 48, 3)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '09:39: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, 4, 30, 7, 39, 18)

	fake.month_name()
	# 'May'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1722, 1, 6, 6, 49, 12)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(14913, 86261)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/nobis/quisquam.doc'

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

	fake.file_name(category=None, extension=None)
	# u'cupiditate.docx'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'phillipsthomas@stout-moore.org'

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

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'register'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'bradyjoshua@hotmail.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'rodriguezemma@rodriguez.biz'

	fake.domain_name(*args, **kwargs)
	# u'smith.org'

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

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

	fake.slug(*args, **kwargs)
	# u'totam-libero-eum'

	fake.uri_path(deep=None)
	# u'search/categories'

	fake.company_email(*args, **kwargs)
	# u'vforbes@james-morris.biz'

	fake.uri()
	# u'https://www.walton.org/search/wp-content/posts/about/'

	fake.ipv6(network=False)
	# 'ab5b:ef0c:e84:1da:ada8:e186:190d:d804'

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

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

	fake.mac_address()
	# u'67:63:89:54:b0:43'

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

::

	fake.isbn10(separator="-")
	# u'1-80832-710-1'

	fake.isbn13(separator="-")
	# u'978-1-220-68705-9'

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

::

	fake.job()
	# 'TEFL teacher'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Harum ipsam nemo neque illo consectetur. Ratione consectetur deleniti nisi repellendus. Molestiae repudiandae sequi velit recusandae dolorum.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Sequi cumque vitae veniam eos veniam. Ipsam tempore dolorum qui.',
	#     u'Voluptatem rerum natus perferendis iste quisquam.',
	#     u'Dolore ut quam officiis velit consequuntur ea. Perspiciatis consequatur corrupti perferendis et.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Molestias voluptatum non illum repellat illum vel.',
	#     u'Hic perspiciatis porro tempore facere.',
	#     u'Laborum aspernatur soluta iure iste.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Repudiandae repellendus dolorem autem neque neque. Itaque perferendis quam totam. Eum enim voluptatibus dolorem earum.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Eum perspiciatis magni repellat.'

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

::

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

	fake.locale()
	# u'yo_NG'

	fake.binary(length=1048576)
	# bytearray(b'\xa3\xdd\xee\xa7\xabj\x9c\xa2\xbe\xab\x8a\xb0\x91\'\xa8\x00\x83\xf2\n\xde\x13\xa8\x1cA<\xb7\x9eZ^H\x88\x96\xe2\t\x15\x92L\xa6\x14\x86\xbc\x03\xe2\x9ar-\xed\x1c\x81\xb8%K\x81P\xf1\xa5N\x99\x84\xa8\x86R\x0f\xa2eaz\xa9\xa6\xbd\xcd\x8d5\x02\\\xfd)\x96,N\xfd\xf6-k|\xe7\x1d@\xb5\x8d\xe6\xa9\xa7\xdc\xf0\xea\xae\x1b&-X\x8b@\x1f\xb4\xd7GBe\xcb\x8f\x0e\xfdG\x03D\x99\xfbL\xc21\x00\x0b\x87\'\xbfZF\x8f\xd8\x8f&\x7f\xfd\x16\xe7C;\xe0\x1a@\xf7\xf0\x875\xcbbV\xdc\xbdQ9\xd5\xb0\xfdB\xfb\xe8\xdfnM\x85\xf70)\xea\xf5\xf2\x0fb\x16\xa2V\xe8]&\x0c\xfaa\xbexa4\t<Q\xdc\xee\xaed\xe9\xee\xb6f\xe2\xf7s-\xc9zU\xc3\x94\xf4\xf68\x16\xa1\xe4?\xf0=g;\x03\xa4a\xdbg\x99-\xbe\x06\xda\xe9B\xb4?\xc11g92\x8c\xcd\xcdp*\x07\xbfU\x9c6\xb7\x9f$\'\x8e\xde\xeb*\xda\xadG z\x07\x01\xd5\xaeR\x9b\x17\x19Qf\xe4\xd3\xe4\xc9\n[\x0c\xc0c1\xa3\xb7.\xc4s\xb8\xa85g\xee\xff\xf5H\xfd\xef\xaf\xe4G\x1f\x9a\xef\x01\xff@\x91\xb97\x10\xad\xdf\xff\xc4:\x92\xa2#\x99\xd38j<\xb2\xf5\x96\xd7/\x0f\xfa\xd9{\xd2w1\x91\x86f\x0f\x9d"7\xcb.\x19\xa4\x16\xef\x8b\x96F\xb7\x02\x14\xaa\xfb>{[\xef\xd06\x01\xf3c\xe9\xca\xdd\x81\xf2p\xfe@\xa8\xebJ,\xaa?\xed\x16?\xc4!\x90\xa7`\x7f\x0f\x91\xf5:Y#;>\xbc\x8eDRC\x16?U\xfb\x1bv\xb7\xfe\xda\xc8\x0b\xd3\x84\'\x04Z\x91\xf9#\x98=\x96\x06z\rH\xcf\xc8\x0frqY<\x05\x84j\x8d\x92\x1a\xf9\x19%r0F45\xb1\xde\x98\xf3\x83\'\x885\xfc\x0e\x97i\x96\xc1L\x08\xe7\xc7\xbe\xd7\x8f\x9b\x9cm\x8d\x02\xda\x18\x9a\xc3^\x9f\xab~\xe5\x95wG\x85W~\xe3\xf5tmYUh\x86\xac\xf96\xec\xd5\x07o\xc9\xab\x8b\xb3\x99\xe7\x0c\xe9\x02\xc8\xc0\x19)\xff\x9af\xe0}\xb5Gp\xa1E\xe7\x87T\xed\x1bM$\x94\\LDu\xf2,\xa2\xea\xe6R%\xa5\xffQ\xf2lfi\x82\xdc\x00\xed\xc6;p\x19\x88\xc0M\xb4l\xf3T\xa7\xa6\xf0#E\x94\x1c\xc1\xd7:\xb0\r\x1fz\x91\xcd\xba\x1b\x1bWM\xb1\xc9z\xe6\xd8\x13\x1b\x82\x88D\xa0\x97\xbb\x00Ht-\xc1t\xce\x98\x92\xf3\xaa\xf5\xc7\\\xee\xf2\xdc\xd0A\x91\xcb\x8c\x14\x0e\x93\x9aI\x0b \x90\x82\xa9\xf8\xf6\xb1\x88\xb9$\xaf\xd0j\xab\xc8\xc2\xbc\xf7@\xfd>\xf1{*\xc7P\xe0\xda\x85\x0c\x1a\xd9\x9e\x9f\x9bY\xc4Y@\x13\xbe\xac\xfe\xf29y\xf8\x7f\x7f\xb8\x8e\xda\x16\xa8]z,\xaf#N\x8d\xedmyN\x15\xf1yAl.\x98\xd7\x1e?\x95\x0b\xb6\xc7\xc1\xfa\x1d\xe0Z\xbd\xed\x0e\xb7V\xfdx\\C\x1aIG9#x>+x\x93\xfe\x8a\xc4K~_v6\xf9\x13\t\xe9\x1b\x90\x97\xa8t\xf8\x82\xae\xd2\x953\xda\xfa\xc7\xd4\xc5\x8f\xf6\x0b\x01@g\x13Z\x1f2ud\x08\x01\xd8\xac\xf8,m\xfa\x0c/\x86\x10\xd0i\xf3\xac\x8f\x03A\xd8f\xa9?\xc8\xfc\xba9\x985\x99bS=Bc\x0ch<2\xa9\x80\xfb\x1b&^\x98!\xed\xfd\x92M\x86\xe1g\xb2{\x96\x85\xa7\xa6s\x90\xee\x9e\xeff\x16Q\xf5^\x9a\xa93\xb7\x95l\xa1\xb1e\x01\x9c\xa5IdO+?\xbbjfYXc\xfax\x1f\xed\x80\xb5!J\x17\xc5:R\xa6\x8a\x87;\xeem\x1f\x99)\xa5ohEL\xcc\x97\x84\xaa\x0f\x9e\xb0\xbc^?\x14]\x8b\xf5\'\x87O\x1c\xc7\t\x83\x91\x94g\xaeY5\xa19<R\xaa\x19!Br\xfe\xf3\xe1@Aa\xb4r\x0by|\x8d\xd6r\x8d\x0e\n\xb8\x8c\xec\x9b\x963x\xd1\x8f\x9f\xd0s\xe1\xd0\xab:\xab\xa0\xba\xcbhb\xd2<\x90\x93\xab\x9c\xb2\r\xb5u\x97 cA\xaaS\xa54:\xb6\x99\xc0\xef\xb0NR\xf4\xd0LbVE\xd8\x92\xcf\x15\xf6\xbbB6CK\xfbV\x91D*2\x0171\xa6$\xe7,\x88\xb38\x85\x0b\x89\xcbh')

	fake.md5(raw_output=False)
	# '37b85145ce93910158b09cd367aa3a09'

	fake.sha1(raw_output=False)
	# '8a8ad10392ddab568a9316a6307a742bf68468db'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# '5894a6f6-e9c1-75ee-184b-1a543fb2069f'

	fake.language_code()
	# u'or'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Morgan'

	fake.name_female()
	# u'Sherry Myers'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Kenneth Bryant'

	fake.suffix_female()
	# u'MD'

	fake.name_male()
	# u'Mr. Adam Moreno'

	fake.first_name()
	# u'Daniel'

	fake.suffix_male()
	# u'Jr.'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Donald'

	fake.first_name_female()
	# u'Shelley'

	fake.last_name_female()
	# u'Stafford'

	fake.last_name()
	# u'Washington'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'1-797-107-5020x2602'

	fake.msisdn()
	# '6768205911177'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'6134 Wolfe Trail Suite 852\nNew Dakotaborough, MI 89008-1738',
	#     'birthdate': datetime.date(1970, 7, 12),
	#     'mail': u'nancybrooks@hotmail.com',
	#     'name': u'Melvin Delgado',
	#     'sex': 'M',
	#     'username': u'amandaschwartz'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'07156 Garrison Falls\nNorth Dawnstad, MA 50444-7343',
	#     'birthdate': datetime.date(2010, 4, 3),
	#     'blood_group': 'AB-',
	#     'company': u'Bailey, Ball and Jones',
	#     'current_location': (Decimal('-88.8484125'), Decimal('-26.266958')),
	#     'job': 'Stage manager',
	#     'mail': u'ymontoya@gmail.com',
	#     'name': u'Michelle Black',
	#     'residence': u'6242 Murphy Drive\nNorth Johnchester, PW 17294-1977',
	#     'sex': 'F',
	#     'ssn': u'590-26-8573',
	#     'username': u'mario04',
	#     'website': [   u'http://martinez.com/',
	#                    u'http://www.rodriguez-rivera.com/',
	#                    u'https://chan.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'heidismith@yahoo.com',
	#     8615,
	#     u'kennethharris@yahoo.com',
	#     u'ycooke@yahoo.com',
	#     9166,
	#     2962,
	#     5822)

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'http://stewart.com/explore/categories/author.html',
	#         u'bradleykatherine@gmail.com',
	#         u'http://www.campbell.com/list/category/tag/index/',
	#         u'ZnlggKxoiymjjowwqjDh',
	#         datetime.datetime(1994, 12, 30, 3, 11, 41),
	#         7060,
	#         -1103466735.981,
	#         u'http://turner-patterson.org/',
	#         datetime.datetime(2000, 10, 29, 9, 46, 10),
	#         u'SYnbuIPgDwLaoWspwdjY'],
	#     {   u'cupiditate': u'cVQtQdhhOQgxSMqShWyq',
	#         u'eligendi': datetime.datetime(2003, 3, 25, 4, 18, 32),
	#         u'illo': u'enOLMidgZDkARQpKoHUZ',
	#         u'molestias': u'XcHdsyDkJLLZNjuqLJEw',
	#         u'nulla': -957873187549083.0,
	#         u'odio': 6116,
	#         u'repudiandae': 3846,
	#         u'sit': 5002443980.2,
	#         u'unde': Decimal('-47937315.107')},
	#     {   u'accusantium': {   2: u'ZPComXsympNjCHxUTkuz',
	#                             3: [   u'GACPacMwTeLwSOyFgqpu',
	#                                    u'LgojAuIrfLevyEOKVckp',
	#                                    -30418.6],
	#                             4: {   2: datetime.datetime(2006, 1, 8, 20, 31, 5),
	#                                    3: u'https://hopkins.biz/',
	#                                    4: [   95345414.73973,
	#                                           u'retblRYXpSsuAsAWgpYu']}},
	#         u'blanditiis': {   6: u'http://bailey-cummings.net/home/',
	#                            7: [   datetime.datetime(2012, 3, 5, 21, 43, 44),
	#                                   u'yjLDcMZZbJWQLwzGMQYJ',
	#                                   6757],
	#                            8: {   6: -9590887.0,
	#                                   7: Decimal('-7.718'),
	#                                   8: [   datetime.datetime(1974, 3, 25, 14, 23, 11),
	#                                          7960]}},
	#         u'dolor': {   4: u'http://reilly.com/tag/tag/about.asp',
	#                       5: [   u'jALixSuFQXiPbRSjotah',
	#                              u'LvMgKyjRSjBgsYLgLVlG',
	#                              9469],
	#                       6: {   4: 3381,
	#                              5: 1788,
	#                              6: [u'IiyyIdHjTpITryqkvkDs', 4456.6285]}},
	#         u'doloremque': {   5: datetime.datetime(2005, 5, 23, 21, 9, 29),
	#                            6: [   u'mTchOIhWLqwyVybxbFdg',
	#                                   u'CBfTgoxMGodeKrTWknRi',
	#                                   u'http://www.ramos.com/post/'],
	#                            7: {   5: u'corey43@jones-wilson.com',
	#                                   6: u'BCJBacSybDcjSWBYkJul',
	#                                   7: [   u'yHHSiezCeuJWdkeDMGVA',
	#                                          u'fJUottYxEQJCIxcPcfqD']}},
	#         u'earum': {   9: 5816,
	#                       10: [   4225,
	#                               u'https://www.long.org/main/blog/author.html',
	#                               u'kaUhaBOksHGLDCuQTFXg'],
	#                       11: {   9: 164,
	#                               10: Decimal('8.05839688775E+14'),
	#                               11: [   datetime.datetime(1982, 12, 24, 2, 53, 2),
	#                                       u'tDLpAQGxjISVQtllqOzk']}},
	#         u'eos': {   0: u'fLfPepiMKtlFdksLiLYi',
	#                     1: [u'fiilQAThEKJeRHDAPfWI', 26705975.739, 1720],
	#                     2: {   0: u'http://goodwin.biz/login.php',
	#                            1: u'https://www.gonzalez.com/categories/search/author/',
	#                            2: [1854, 22.4304]}},
	#         u'error': {   8: u'matthew11@caldwell.biz',
	#                       9: [   u'vaughnevan@martin-lawrence.com',
	#                              u'mKJuKXcNhclZBVgffaPS',
	#                              u'hEPNKAEAnYpxPpRmaXzc'],
	#                       10: {   8: u'ECOHEFvPzuIogDoiWGnL',
	#                               9: 7035,
	#                               10: [   u'FvaIgBMbRoyluDrlgrrR',
	#                                       u'ezwrIHYqyTunNCtrwaUM']}},
	#         u'ex': {   7: Decimal('544055632395'),
	#                    8: [   u'https://smith.com/blog/posts/search/',
	#                           u'robertgregory@yahoo.com',
	#                           u'RGJWLMjWHMQrUCCCdzuZ'],
	#                    9: {   7: u'https://www.cervantes.com/wp-content/category/about.jsp',
	#                           8: u'rebeccacarey@yahoo.com',
	#                           9: [-837933940764.0, 895]}},
	#         u'ipsum': {   1: datetime.datetime(2014, 7, 27, 6, 1, 8),
	#                       2: [   u'SMJixanTBxjVpIifmDwc',
	#                              u'TPMwWlnCVOTqWVZPDlGV',
	#                              u'ian32@edwards-gonzalez.com'],
	#                       3: {   1: Decimal('-25049.482'),
	#                              2: u'alexis79@yahoo.com',
	#                              3: [   u'DecsLtFqhiirdnmbyPSC',
	#                                     u'JjfLLMsSJARaadNmFDgG']}},
	#         u'quam': {   3: -14367996.124,
	#                      4: [   u'hdNomgwNHgueIxrUKllT',
	#                             4173,
	#                             u'VVgvDzHAHcGOodiJrtvD'],
	#                      5: {   3: 3145,
	#                             4: 2158,
	#                             5: [   u'https://www.morrison.info/index.php',
	#                                    Decimal('-88290.82724')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'uBAzEzqjYGsqWtbhOzIZ',
	#     -3048.709,
	#     u'http://bentley-lewis.com/category/wp-content/explore/category.jsp',
	#     u'loribaldwin@cummings-carter.org',
	#     u'http://ward-cruz.com/',
	#     datetime.datetime(1973, 12, 28, 2, 42, 41),
	#     181,
	#     u'ZCfWUJtFGzLgBNSOlRLE',
	#     u'VUItoDJwLgpBzYWWcrlJ',
	#     u'http://www.davis.com/author/',
	#     4339,
	#     u'xpLIKobzcCGmDkpHjigm']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-3432.5'),
	#     u'http://www.hendrix-colon.com/login.jsp',
	#     u'https://sanders-lee.com/posts/blog/post/',
	#     8336,
	#     datetime.datetime(2014, 8, 15, 14, 22, 40),
	#     979,
	#     3285,
	#     u'CMgUxcYPFMNXIQBuXcBR')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'ertmHJzTPYxeQJEyMqeP', -711649110203.0, u'yflowers@davenport-coleman.com', u'NKQHPeCdtfhuzJiqqlxx', u'https://www.johnson-brewer.info/explore/index.htm', 4375, -6.548327, -35162129563.43])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'asperiores': u'ZUUYWyLHGESlCEpLkDKb',
	#     u'laudantium': u'OvyQUUWYsnvLmPYNVeKK',
	#     u'quam': 654,
	#     u'qui': u'chapmansteven@gmail.com',
	#     u'quis': u'QyxWvhathuOSLfZXldyR',
	#     u'reprehenderit': 1589,
	#     u'sed': datetime.datetime(1998, 3, 27, 18, 25, 4),
	#     u'totam': u'AvyqLpakWAnjhQkzBSGi',
	#     u'voluptas': 1090}

	fake.pyint()
	# 4534

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'728-75-2795'

	fake.ein()
	# u'83-6182634'

	fake.itin()
	# u'977-85-9315'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.01; si-LK; rv:1.9.0.20) Gecko/2014-08-11 04:23:06 Firefox/12.0'

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

	fake.opera()
	# u'Opera/8.61.(X11; Linux i686; cs-CZ) Presto/2.9.183 Version/11.00'

	fake.windows_platform_token()
	# u'Windows 98'

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2011-02-13 14:49:57 Firefox/3.8'

	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 NT 6.2) AppleWebKit/5320 (KHTML, like Gecko) Chrome/36.0.850.0 Safari/5320'

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

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