
Language lt_LT
===============

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

::

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

	fake.building_number()
	# u'15960'

	fake.street_address()
	# u'6711 Rimant\u0117 Orchard'

	fake.postalcode_plus4()
	# u'40192-9311'

	fake.city_prefix()
	# u'South'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'Gai\u017eauskastown'

	fake.zipcode_plus4()
	# u'52209-3081'

	fake.state_abbr()
	# u'CT'

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

	fake.street_suffix()
	# u'Motorway'

	fake.city_suffix()
	# u'berg'

	fake.military_dpo()
	# u'Unit 1912 Box 6380'

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

	fake.country()
	# u'French Southern Territories'

	fake.secondary_address()
	# u'Suite 430'

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

	fake.postalcode()
	# u'74567'

	fake.address()
	# u'6604 Marija Vista\nNorth Eidvil\u0117land, RI 11315'

	fake.state()
	# u'Connecticut'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Paulauskas Drive'

	fake.zipcode()
	# u'60574'

	fake.postcode()
	# u'90887'

	fake.military_apo()
	# u'PSC 2154, Box 0068'

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

::

	fake.license_plate()
	# u'06C 434'

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

::

	fake.bban()
	# 'MFTI6615437969285'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB12YVOD9690265808942'

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

::

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

	fake.ean13()
	# u'3964800857639'

	fake.ean8()
	# u'12981045'

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

::

	fake.rgb_css_color()
	# u'rgb(6,119,124)'

	fake.color_name()
	# u'LightSalmon'

	fake.rgb_color()
	# u'91,242,84'

	fake.safe_hex_color()
	# u'#661100'

	fake.safe_color_name()
	# u'yellow'

	fake.hex_color()
	# u'#572ce2'

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

::

	fake.company()
	# u'Sakalauskas Ltd'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Team-oriented clear-thinking attitude'

	fake.bs()
	# u'empower transparent experiences'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'VISA 13 digit'

	fake.credit_card_full(card_type=None)
	# u'Discover\nAistis Petrauskas\n6011994175646650 12/25\nCVC: 409\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XMR'

	fake.currency_code()
	# 'LRD'

	fake.currency_name()
	# 'Czech koruna'

	fake.cryptocurrency_name()
	# 'Bitcoin'

	fake.cryptocurrency()
	# ('IOTA', 'IOTA')

	fake.currency()
	# ('GNF', 'Guinean franc')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 15, 9, 22, 2)

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

	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(1990, 7, 15, 17, 44, 47)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 11, 0, 2, 6)

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

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 3, 13, 4, 47, 7)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2010, 4, 30)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2005, 1, 4, 3, 50, 58)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1983, 10, 31)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2006-03-09T22:26:43'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2000, 6, 21)

	fake.month()
	# '09'

	fake.year()
	# '1995'

	fake.day_of_month()
	# '15'

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

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

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1928, 10, 10)

	fake.time_object(end_datetime=None)
	# datetime.time(2, 0, 45)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 17, 14, 9, 28)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1989, 7, 5, 20, 25, 56)

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

	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, 8, 14, 22, 41, 14)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1398, 3, 2, 6, 34, 22)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(17143, 22497)

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

::

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

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

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

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

	fake.file_name(category=None, extension=None)
	# u'sunt.avi'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'gustas58@gintalas.com'

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

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'register'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'hkaupas@gaizauskas.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'hzukauskas@butkus-kalvenas.info'

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

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

	fake.domain_word(*args, **kwargs)
	# u'kairys-gaizauskas'

	fake.slug(*args, **kwargs)
	# u'autem-at-aperiam'

	fake.uri_path(deep=None)
	# u'explore/wp-content'

	fake.company_email(*args, **kwargs)
	# u'anapaulauskas@gronskis.com'

	fake.uri()
	# u'http://naujokas.org/'

	fake.ipv6(network=False)
	# '3473:8b77:2854:6cb:d22b:2d21:129a:ffad'

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

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

	fake.mac_address()
	# u'aa:06:8a:cb:f9:d0'

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

::

	fake.isbn10(separator="-")
	# u'1-332-74295-5'

	fake.isbn13(separator="-")
	# u'978-0-15-494963-9'

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

::

	fake.job()
	# 'Engineer, building services'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Sed distinctio repellendus praesentium dignissimos ad alias. Maxime odio architecto laboriosam ullam.\nAliquam quia iure error quisquam numquam itaque. Molestias culpa saepe molestias nihil.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Corporis consectetur architecto explicabo. Rem illo cumque.',
	#     u'Earum voluptate maiores error dolor cupiditate dolore. Ullam sint ab impedit nihil.',
	#     u'Repellendus nam non tempore voluptas quae veritatis. Hic nobis eveniet.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Praesentium vero voluptas minima cumque quidem.',
	#     u'Nobis impedit quae sit facere nesciunt aliquam provident.',
	#     u'Sed possimus repellat ab nemo libero.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Hic amet sequi itaque illo. Porro veritatis a corrupti molestias aliquam. Quo ea eos doloribus consequatur pariatur.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Iure illo neque.'

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

::

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

	fake.locale()
	# u'ug_CN'

	fake.binary(length=1048576)
	# bytearray(b'\xc1\xad\x08\xe8\xb5j\x9a\xf8\xca\xf1:\xb7H\x0f\x8bh\xb8\x1e\x9a)r\xb5\x0fB\xc6\xd0\x16\xaf\x04 v\x8b~Zx 5-k\xfc\xc1\xde~u\xd0\xcf\xb9\x12 \xd6\x14Gu\xb6\xb2\xd4\xc1o\x11\xeas\xbbg\xe2G\x9c\x8b\x8b75\x8e\xec\xfc\x988uUc*!@i8A_f\xd2\xa6\xdb0\xfd\x10G)l\x16\x8f\x05\xa9<\xc5\xee`\xab\xbe\x96\xf7U.\n2\x01|\x14\xd6\xe4\xe2\xc1l\xa0\x975\xddie\xcb^D(\xa6\x16\xfb\xfcW\x1d1\xa0\x8b,\xf2(\xcfn\xa1w\xcd6\xad\x1e_S\xf9\xdf\x01\x08\x9b.4X\x0f\xd1\xcf\xc4\x043\xfa\x98\xf4\xa5\xd9\x9f5\xbaT\xa8\xb7\x8fK\xeegh2\xf2\\\x10+h6\x81\x84\xd9\xa9=\x1b\x07\xd94&\xd0\x88\xbb\xb4\xf2\xdePwcF\xeb\\N\xf01A\xf0\xb6[\xae\x1b?\xd1\xeb\xeal<\x9b\xf8?\xbd\r)\x9c\xd91\x9c5uO\xf2\xb0\xd9!\xd6\xb1\xea\x16^\xaa\xfbO\xb8b{}\x08\xaf\x85\x87}.)\x80Q1\xa0\x84\xa4\x1d\x16\xbdu\xbd\xec9\xa7\x07\xd2\\:\x9f\x16\x98\xee3g\x1a=\xec\xfaD\xd7(d\x8ePZ\ttP\xc4\x99u\tlC OY\x12\xabS\xc5\x9a\x17\xb7\xc0\xf0|\xe9Y\xf5\xf6\x04\xb86j\x8b5\xa3{^c\x10\x04\xdek\xff\x1b[\xe7\xd4\xde\xb7\xb6{\xc1W\x0b\xa0\x0c\xde\xae\xb7\xa2S\x06\xc6?l\xef\xe7x!\xca\xbf\x14(\x08\x99\xa2\xaf/\x97\xcd\x85\xa0/Q\x83?\n\xcf*J\x91\x14?\xe3\xb1\x99j\x8b\xe7|\xf9\x08I 1f\xfa#/%z\x0b\xe7$\xd9\x00\x85j-\xc7\xe1\x03\x9eG\xc0\xc4\x0f\xf2\x18\x11\xa1\x1b)\xbe\xec\xdb\x8d\xbfEq\xca\x860\xfd\x96\xb9\xd6QK\xf9\x93\x10\xb4\xdcT\xf7p\xe4n\x7f?3\xfb&\xbfli\xd1`pd\x9a\x0b!\xfd\x03;\xea8\xd9\xad\x8c2\x92\x9f\\f\xb1B\xe2=>/Fx\x8fGT1&\xa0F\x88"sf\x99+\x88\x00C\xfe\x93\xf9\x99\xb4|s,\xcep\xe0y\xd8\x0f\xa5\x90\x83\xf3\xfeo-\xear\x02\x96\x96\x83:/\x1exe\xc4\xdc\xbfu\x02l\xa1\xfb,%\xe8\xc3\x07U\xc7VA^\xd5J\xd7\x9e\x16\xe8\x08\x87.\xb1\x95\x0fd@\x96\xefq\xc3\xab\xd9U\xd5\xbb\xf9D\x991\xfd\xf1\x91\x00\xc1\xc5n\xc8\xe8\x80_\x91D\x1d\xb1\x97G\xa8e]\x00.\x84i\xd4q}\x10:\x05L\x1e\xba\r\xfd\xa0\xb0\xf9H7\xda\xc9\x01E\xe40i\x818\xfe4\xd10\xfbU\x87\xcb\x1a\xd3\'\x13\x95\xfc\x0c\xa4N\xa1R\xeb6\n\xe0G\x86\xed\xee\x10\xbal\xf9\xec\xa0>\x189&\x10\x83\xe1(\x1d\xe1?\x7f\xdfIz\xad\x83=\x8f\xb5\xe8\x8a\x13\n|Sw\x00{A.\xc4\x98v{g0\xca8>\x1a\x963f\x12\x93\xd0.6\x83\xed\x12jB\x0e+m\xc8\xa48\xae\xb3\xff \xfd\x85\xa9\xf0xK\x95\xc3S\x96(\xf0\x90\xfa\x97d\xc7\x19\xfb\xd1|!\x0b@\x1e\xd4\x7f\x0cT[\xc8\xb9\\\xcf\xd4@\xba\xbd\xecl\xd9\n9\xcb\xdb\xe3\xea\xda\x0eL\xc8\xd1\xcc\x90\xa1\xd9\x89x\xa0]\x19\xc1\x836\xaa\x8b\xfc\x0e,kfS\x7f\xb4\xa8\xdc\x81=\x8a\x9d!j\xbeZb\xa9v\xd9\xfc\x83G\xcb\xfe\xd4\xac\xda\xe1\xf4%\x1fd#u"\x1c\xe5\xd3CD}\x15\xc7\x10\x18\xac\xdb\x86\xef\xb7\xa5gs\x82\xaf\xfd\x1f\x85\\ad\xe5 \x85\xd3\xdc\xd1\xd9\'\x83`=\x83\x14\x0e\xae\xb4\xdac\xdb\xb6\xb2O\r\xa2\xe4*\x12\xee`\xa6\xa4\xb8\xec;\x17\x9e\x06_,Xk\xcb?\x16\xba\nEl\xa3\x95\x8c\xf9\xfc\x8a\xa3@:\x81\x8f\x06H\x1e\x81\xeaR\xb2\xd4{3\xf4\xab\x99\xbbp?\xc4\xa5\xb7\xe9\xfd[\x08G%\xba9\xcf\xa8\xcb\x87\n\xa31\xf0\xf95\xb3\xfe\xf1\xd3\x13\xed-\xb3\xeb\x95\xe0\x1f\xf8F\xb0\x8a\x1a8\xe7\xec\xc6\xe5yL\xbbfy\xf3\x190U%\xba;\xe6\xea\xe8\x8b\x11\xeaul\xb8B\xa9&\xd5E\xd87\xae\x04\xba9\xa7\x03[\x07\x92c\xb8\x1a\x18\x0c6\xb6\xc7\x1fo\xc6')

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

	fake.sha1(raw_output=False)
	# '6ff6218e56bc1a328a9613f410cca1aa5a3d950b'

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# '6b0082b7-f2f4-36d9-ea79-abfed848c547'

	fake.language_code()
	# u'kok'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Urbonas'

	fake.name_female()
	# u'Aistis Kalv\u0117nas'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Rasa Kazlauskas'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Pocius, Matas'

	fake.first_name()
	# u'Jolanta'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Eidvil\u0117'

	fake.first_name_female()
	# u'Gediminas'

	fake.last_name_female()
	# u'Kazlauskas'

	fake.last_name()
	# u'Galdikas'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'+370 80825900'

	fake.msisdn()
	# '8561404381375'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'49712 Naus\u0117da Tunnel Apt. 060\nPort Vitalijashire, CT 45682-6507',
	#     'birthdate': datetime.date(1990, 3, 6),
	#     'mail': u'gronskisdanielius@yahoo.com',
	#     'name': u'Lukas Gailys',
	#     'sex': 'M',
	#     'username': u'griniusarmandas'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'3803 Kavaliauskas Locks\n\u017dukauskastown, MT 32973-7646',
	#     'birthdate': datetime.date(1934, 4, 8),
	#     'blood_group': 'A+',
	#     'company': u'Petrauskas and Sons',
	#     'current_location': (Decimal('-38.9233605'), Decimal('175.376310')),
	#     'job': 'Learning disability nurse',
	#     'mail': u'qkavaliauskas@gmail.com',
	#     'name': u'Gronskis, Egidijus',
	#     'residence': u'7406 Giedrius Point Apt. 743\nStankevi\u010diusshire, OR 20514-1829',
	#     'sex': 'F',
	#     'ssn': u'048-48-0236',
	#     'username': u'zygimantas21',
	#     'website': [u'http://www.nauseda.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'wGExjteTWWcauKbEGxmN',
	#     Decimal('95520058892.3'),
	#     2257,
	#     u'OlyGzyDWpLKxavkQPqgi',
	#     3425,
	#     u'BywOjfexKtNVYAmDgUWl',
	#     996,
	#     -163875325.0,
	#     2827]

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('-7.96266807933E+12'),
	#         1100,
	#         u'sRyIepZWfXoIiCTciIxh',
	#         u'pFCiHAiINCzhrgouKPhP',
	#         u'BXjkZaiKuaSyVBOxnCXd',
	#         u'GKLGHNtQmFUGjMaFbfSn',
	#         7512,
	#         u'mbniPIyOvgPbrnaOJDAO',
	#         9750,
	#         u'http://www.jankauskas-kiska.com/tag/main.htm'],
	#     {   u'a': u'stankeviciusricardas@povilonis.info',
	#         u'asperiores': u'TqNqlumSJkZOaqNbVAny',
	#         u'debitis': u'VCUOJQXkDBnYpGeSAYCA',
	#         u'eligendi': u'yZXeyvfgTitfQFVKlUYl',
	#         u'eum': u'PZGFtpLshQQScbvvbbBr',
	#         u'labore': u'http://www.narusis.org/list/blog/category.htm',
	#         u'neque': u'rVbJwRzvVFSvEerIRoRc',
	#         u'nulla': 2630456.3,
	#         u'reprehenderit': u'pAdWGHnFdCjgkfxdMwcE',
	#         u'unde': u'LayLgMjLRJMxDzroOBJK'},
	#     {   u'aspernatur': {   4: datetime.datetime(2011, 9, 10, 4, 13, 49),
	#                            5: [   u'gronskiskotryna@vsiliauskas.com',
	#                                   -4700276381.0,
	#                                   883777692960592.0],
	#                            6: {   4: 5541,
	#                                   5: u'jBHyWEwwDcTBmZQcQiRI',
	#                                   6: [   629,
	#                                          datetime.datetime(1996, 7, 12, 22, 35, 16)]}},
	#         u'autem': {   1: u'http://gailius.biz/register.asp',
	#                       2: [   u'IKZVjYaBHgWbcRqQfJPQ',
	#                              u'uWnJpFFDNZnEHcNuoRlv',
	#                              u'penJjsnUMpOjicJnxhSp'],
	#                       3: {   1: 8143,
	#                              2: u'https://gailius.com/about.php',
	#                              3: [   Decimal('-7.16034210247E+12'),
	#                                     u'GwmYOZpwbXXiNzrZxdag']}},
	#         u'earum': {   5: u'https://www.povilonis.com/',
	#                       6: [   5596470.6805,
	#                              u'mRNFlNvVTqlVUjcZGeIm',
	#                              datetime.datetime(1981, 2, 24, 21, 37, 45)],
	#                       7: {   5: -950679.53447755,
	#                              6: 624129082163.5,
	#                              7: [   u'cbYXrDzHeJfWyEHWVHRs',
	#                                     u'kazlauskasjonas@sakalauskas.biz']}},
	#         u'id': {   0: 2895,
	#                    1: [   u'http://www.jankauskas.com/',
	#                           u'UNxfQUEPkypqYNZYTAOA',
	#                           u'jyYSPJntSYPIQKDBzJJB'],
	#                    2: {   0: u'nhMwRBLnKlqWxLoiZPKu',
	#                           1: u'SJpwLiXzVgPBtfCCRPbO',
	#                           2: [u'WnEoxdgSweERcrqIjfqt', 5599]}},
	#         u'impedit': {   7: 1065,
	#                         8: [   u'kajusbutkus@zukauskas.biz',
	#                                datetime.datetime(2014, 5, 5, 11, 42, 20),
	#                                6757],
	#                         9: {   7: u'bBOQztZBtbNRrKbMvMdo',
	#                                8: u'lmQUXLPoGJWnIaCFABBM',
	#                                9: [u'gintalasrimante@gailius.com', 7566]}},
	#         u'iure': {   2: u'AAalcrHwIiHtWonbqqPr',
	#                      3: [   u'pDgVBMZjweUKHkMWMZMk',
	#                             datetime.datetime(1974, 10, 14, 8, 0, 10),
	#                             3565802805042.0],
	#                      4: {   2: u'wMSVVggPMWatjWMYTBwx',
	#                             3: u'ntPiAtvNInXNIEWoptDI',
	#                             4: [   datetime.datetime(2016, 10, 23, 15, 26, 48),
	#                                    Decimal('913804177.749')]}},
	#         u'nam': {   3: Decimal('-6.81328721748E+13'),
	#                     4: [   datetime.datetime(1990, 2, 8, 2, 2, 35),
	#                            u'MYzvHmmGEBFxBGaSkvkq',
	#                            u'ZGigzGeWGnOJSZsfCekO'],
	#                     5: {   3: u'ZWdcaYGnUxrnxmNZWVVG',
	#                            4: 4647,
	#                            5: [u'CLnqFnIPbaWzifnnQVqv', 3310]}},
	#         u'perspiciatis': {   8: u'GcFKvotmHIcuAzhzURkt',
	#                              9: [   35,
	#                                     u'phyfAvFDMLhfhLBNBuIp',
	#                                     datetime.datetime(1989, 5, 16, 0, 37, 37)],
	#                              10: {   8: u'JodtMdYnjQbKBstsoOpO',
	#                                      9: Decimal('391.843'),
	#                                      10: [u'hrEKWBKNKTzntIipZvRS', 379]}},
	#         u'quod': {   9: u'nFUYzBdVocWvTJweJYQd',
	#                      10: [   u'http://petrauskas.com/',
	#                              u'galdikassmilte@stankevicius-grinius.info',
	#                              Decimal('-155520061.988')],
	#                      11: {   9: u'http://urbonas-poska.info/search.html',
	#                              10: 8075,
	#                              11: [   u'MdughvzDxrMHgiwsXCaf',
	#                                      Decimal('84.4508482975')]}},
	#         u'ratione': {   6: u'xsakalauskas@grinius.net',
	#                         7: [   u'https://www.naujokas.net/search/faq.php',
	#                                5318,
	#                                u'ccWxfzcncAYgJGuyOCFz'],
	#                         8: {   6: u'kestutis54@yahoo.com',
	#                                7: u'BsgOURtFQRjUCPjhHOVO',
	#                                8: [1038, u'VHmvhMqbOdgeAGmmfjme']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(1991, 1, 12, 16, 20, 53),
	#     u'ajwEgGagTZjQCnTaVooV',
	#     u'MHzwVaIRKpvuNNlsDZtl',
	#     -545184971.71639,
	#     u'HLntljKEfzhrbSQiRTxl',
	#     u'aKjHQoqbuDzDSyQuoWBs',
	#     u'https://vsiliauskas.info/category.jsp',
	#     u'LmXqNqaDTiOcSwmYyswD']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-31075278.67'),
	#     u'https://www.urbonas.biz/main/app/about.jsp',
	#     datetime.datetime(1977, 10, 24, 18, 10, 25),
	#     u'VvZZtNxQazIfEATVoUnA',
	#     5607,
	#     Decimal('561.149045325'),
	#     u'FPRIBcDSautxfXLDKOTZ',
	#     u'ByJgSfrHzgcADsiEgCzs',
	#     u'lLknQAwHRWDdgBaCdBST',
	#     datetime.datetime(1996, 8, 23, 14, 58, 12),
	#     u'xueOcIIVZSvvZoKkeizU',
	#     u'http://www.kazlauskas-naujokas.com/')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('7.68023401426E+13'), u'https://www.gaizauskas.com/tag/about/', u'DbqigIBXMmDoKWpQJvMk', 1477, Decimal('0.5852073'), u'OUYPhdDChqSfXMMqEgHZ', 4642286.92, 6573, u'nCTPQmztqtmHYLpdxbdO', 9846, u'OWUDDbalQFBedbAGnxAm', 351])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ad': Decimal('37.7523604399'),
	#     u'beatae': u'AIdyUxEvoPYlPujFMKGv',
	#     u'corrupti': 6120.669989575,
	#     u'cupiditate': u'kiskaaurimas@yahoo.com',
	#     u'hic': u'BKBhRNCPFouiSGhtJskF',
	#     u'neque': u'wlqnthvbxRIVERMOCIAT',
	#     u'praesentium': u'OxucuxkjNNkXOijlZaxm',
	#     u'quibusdam': u'gurbonas@gmail.com',
	#     u'quos': 9671,
	#     u'recusandae': u'hFOqvKPJZeJvWEmtBBVv',
	#     u'rem': u'vilteposka@gmail.com',
	#     u'saepe': datetime.datetime(1994, 1, 18, 8, 2, 28)}

	fake.pyint()
	# 3053

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'318-66-2363'

	fake.ein()
	# u'84-2399415'

	fake.itin()
	# u'942-92-2994'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/2018-05-15 15:04:04 Firefox/7.0'

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

	fake.opera()
	# u'Opera/8.12.(X11; Linux i686; ce-RU) Presto/2.9.184 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows CE; doi-IN; rv:1.9.0.20) Gecko/2014-05-09 23:56:16 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 98) AppleWebKit/5320 (KHTML, like Gecko) Chrome/57.0.814.0 Safari/5320'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/532.42.2 (KHTML, like Gecko) Version/5.1 Safari/532.42.2'
