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

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

::

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

	fake.building_number()
	# u'09585'

	fake.street_address()
	# u'5865 Gailius Ports Apt. 620'

	fake.postalcode_plus4()
	# u'73672-9595'

	fake.city_prefix()
	# u'Port'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'New Vyt\u0117'

	fake.zipcode_plus4()
	# u'95070-5621'

	fake.state_abbr()
	# u'MO'

	fake.latitude()
	# Decimal('29.544017')

	fake.street_suffix()
	# u'Union'

	fake.city_suffix()
	# u'stad'

	fake.military_dpo()
	# u'Unit 7573 Box 2631'

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

	fake.country()
	# u'Guernsey'

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

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

	fake.postalcode()
	# u'34401'

	fake.address()
	# u'Unit 7621 Box 4074\nDPO AA 54246'

	fake.state()
	# u'West Virginia'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Ineta Island'

	fake.zipcode()
	# u'23125'

	fake.postcode()
	# u'88027-8124'

	fake.military_apo()
	# u'PSC 6496, Box 2723'

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

::

	fake.license_plate()
	# u'PLC 6311'

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

::

	fake.bban()
	# 'OXCJ3340269376666'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB06NDIW1534953114736'

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

::

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

	fake.ean13()
	# u'4773638038634'

	fake.ean8()
	# u'81678884'

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

::

	fake.rgb_css_color()
	# u'rgb(229,206,49)'

	fake.color_name()
	# u'MediumTurquoise'

	fake.rgb_color()
	# u'8,195,56'

	fake.safe_hex_color()
	# u'#dd1100'

	fake.safe_color_name()
	# u'purple'

	fake.hex_color()
	# u'#3ee781'

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

::

	fake.company()
	# u'Kaupas and Sons'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Expanded optimizing hub'

	fake.bs()
	# u'benchmark killer platforms'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'American Express\nAriana Sakalauskas\n378559478341562 04/19\nCID: 1382\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'AUR'

	fake.currency_code()
	# 'OMR'

	fake.currency_name()
	# 'Seychellois rupee'

	fake.cryptocurrency_name()
	# 'Litecoin'

	fake.cryptocurrency()
	# ('XMR', 'Monero')

	fake.currency()
	# ('DJF', 'Djiboutian franc')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 28, 12, 11, 18)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 17)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2017, 2, 1, 8, 42, 39)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 15, 11, 27, 21)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 7, 5, 1, 2, 37)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 11, 18, 1, 35, 10)

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

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 17, 8, 10, 3)

	fake.date_object(end_datetime=None)
	# datetime.date(2015, 2, 1)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1973-04-13T07:12:55'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2007, 12, 7)

	fake.month()
	# '11'

	fake.year()
	# '2004'

	fake.day_of_month()
	# '14'

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

	fake.timezone()
	# u'Africa/Harare'

	fake.century()
	# u'X'

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

	fake.time_object(end_datetime=None)
	# datetime.time(22, 22, 30)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 15, 7, 55, 3)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1990, 5, 22, 20, 24, 7)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '19:28:15'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 3, 5, 25, 38)

	fake.month_name()
	# 'January'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1106, 12, 11, 19, 0, 33)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(3285, 35232)

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

::

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

	fake.mime_type(category=None)
	# u'image/gif'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/ipsa/ipsum.bmp'

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

	fake.file_name(category=None, extension=None)
	# u'sed.tiff'

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

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

::

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

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

	fake.tld()
	# u'net'

	fake.email(*args, **kwargs)
	# u'murbonas@gintalas-jankauskas.com'

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

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

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

	fake.uri_extension()
	# u'.jsp'

	fake.uri_page()
	# u'terms'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'simona98@petrauskas.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'kjankauskas@kiska.org'

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

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

	fake.domain_word(*args, **kwargs)
	# u'zukauskas-stankevicius'

	fake.slug(*args, **kwargs)
	# u'odio-quis-eos-a'

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

	fake.company_email(*args, **kwargs)
	# u'paulius92@kiska.com'

	fake.uri()
	# u'https://www.urbonas-galdikas.com/homepage.jsp'

	fake.ipv6(network=False)
	# '6930:9abe:1ecc:273f:3514:f059:9a09:f720'

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

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

	fake.mac_address()
	# u'1e:b4:ed:37:8d:13'

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

::

	fake.isbn10(separator="-")
	# u'1-134-45812-6'

	fake.isbn13(separator="-")
	# u'978-0-86227-466-5'

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

::

	fake.job()
	# 'Occupational psychologist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Fuga cupiditate quae nostrum quo. Animi nisi nam minima natus. Quod beatae cupiditate aspernatur voluptate officiis dignissimos.\nCumque error totam vel.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Ratione odio esse vel tenetur laudantium. Dolorum sit aliquid rem ipsum.',
	#     u'Asperiores asperiores necessitatibus dolor odio eius quas. Amet suscipit labore odio dolores doloribus voluptates.',
	#     u'Accusantium cupiditate sint adipisci dignissimos totam explicabo. Quis ullam odio dicta fugit expedita. Consequatur maxime tempora commodi ipsa modi eius.']

	fake.words(nb=3, ext_word_list=None)
	# [u'quos', u'molestias', u'optio']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ducimus ad ab ad quidem ad.',
	#     u'Modi magnam aspernatur praesentium reprehenderit minima.',
	#     u'Aliquid ea praesentium rem.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ad odit dolore officia quae perferendis. Nemo repellat dolores error.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Sed voluptatum voluptate eius.'

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

::

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

	fake.locale()
	# u'sk_SK'

	fake.binary(length=1048576)
	# bytearray(b'O\xc9p\x05\x94m\xc5\x10\xa3\x13\xda\x8b\xa2\xab\xbf\x1b\xf6\xd8\x82\n\xc8\xff\xba!\xad\xfb2\\\xdc\x91S\xe0R.8U\x03\t1$\r\xdc5\xce\xe0z/J\x8b\xb4`\xcf\xf6\xb1\xa9yi\xf1\xbe\xa3o\xde\xfe\xfbT\xa5\x8b\xf2\x17\x0c\xc4\x87+\xc0Y\xf3M-q\xc3\xf7;\x97]o\xf6\xb7\xf0\xc9d\xb4\xb9\xdb\xc18T*\r\xe1r!\xf9Q\x92\x11\xaa,\xd9\xe4p\xf4\x8e\xd9PE\xd1\xfaf$\x92\x0f>Qw\xe75|\xcb\x8a\r\xb0j\xa1\xd9k8\x17\xc2\'K\xe22/\xe27\xe0\xd7\xcb\xd0\x12\xaetJ}E\xe3\xac9T\xc9H\x9f\xf8\xc1K\xd2\xed\xe2@6%vg\xc9\xf7Y\xa8\x86\xb0\x89\xd8\xf91Mj\xe9_\xa6_\xd4t\xe7\x00\xab\x1a\xb9\xad\xd7b\x80\xfan,\xbd0\x89+\x8e\xc3\xfel A9\x88\xa0\x99N\x9dQU\xb7$#\xa3w\xa0\x80jm\xd86\x93-P\x88{\xabb\xe8\x82\xd7oM\x92}\x0c.\x16=OK\x14T\xf7\xb1s~\x00"\xf9=\xc3\x81i`\x9a\xd5\xa7\xc9Z\xa6\xf62\xc8\xbe\x0e6($\x8d\x03\xd6YRJ\xeb\x16\xee^\xd8k\xe4\xe2\xde\xb9WG\xad\x97(\xca\xaeDd?gN\xca;\x8f\x13\xfa\xca\xe2\xcaq\x93\xc7\xe3\x1e[\x03\xba\xfck,n\xb7\x9b\xd7\x16\x8c\x17\xbc\xbf\x95\x1fM\x0b\x18\x1e\x88]\xa4c\x01\x87Y^\xc3(E\xeb\xbb\xaa\x96\x9a\x07\xb8{\xb4\'PVN\x0e\x08\xd58\xe67\x90\xf6\xca\x8d\xa8q\xa0\x18\xe6U\xb2\x14?\xb3\xb4Z\xa1\xd6\xf6+\x8f\xcbx3\xd0u\x1bn\xaaO\x83,\xfa\x04\xb4\xd4}4\xfa_\xfc\xa3BL\xee\x95\xb8a\xfe\x95b\x03CL\x1e\xf2\xc7\xf7\x11v\xf5K\xc8\x0f\\\x1bi\xb9\xa4\xc46\x8d\xb0\x80I\x97\x03\xb8\xab\x8a`&\xf6\xa0\xa0\x01G\xa8e`\xd8\x8bNj\x8f\xabM\xf0\xec)R\xabC\xd6\x1c\x11\xb5\x8f\x81mu\xbe\xaa8\xf0Wg\xa5\r\xc58M\xf3{*\x02MHeKf0!\x8aZ\x91\x1f\xf3(r\x13\xd5\xef\x1f5\x9399\xee\xf6z\xe0;\xe1\xd7\xe8\x83m\xcf4\xa3_G\xdae\x94:&P-v\n`\xd3FK\xa0i]o\xee\xf2\xd7\x8dv\xd4\xe4L\xbf\x012\xaa\x00\xf4\xc2\xe2\xb2\xe0\x98\x9c&A\xc7\xfa\x8b&c\xb5\xbeA\x06\xc2\xf7S\x05\xcb\xe3\xe5\x13y\x9b+\x08\x828\xe2|v\xc2\xfd\xc7k\xd7\xf8\xd6f\x16>\xed>\x00\xf4\xef8\x15\xf6\xd5\xa5xu6J\xb1\xfb\x81\x07#\xb5sP\xf6)\xef\xa2\xfe.\xac@\xaf\xd0\xe6\xb6\x88$\xd9\xa5\xf5\xca\xa0?\xd9\xf2cY\xa4\x1d\x8d}\x1f[\xad\xf6\xe2\xbc.\x08\xc8q4z\xaa\xed\x92U`\xfe\xdd\xfd\xee?\x02\xfdh\xed\xb1C\xa3\x0e,\x08\x13\xf4p\x08*Jr"\x1eu\x8eq{\x97\x8f\x1e\x95\xf8+\xce\xac\xf9\xe2\xc4c-\xe3\xbf\x8c\x1f\xe7\x9d\x0f\xcd}\xb2$\r^v7\xc6]7\x98\xfb\xdeB\ni\x1bz\xd2\xaf0e\x01Q4\xabp\xc4S\xd6\xbeC\x89\x1e\xbf\xe8\xa4\x90H\xd3\xde\xdf\xca\xf0.l\xaf\xe1\xc8\xb5e\xdc\xbe\x05$\xf0\x1d\x8f\xe1\x81VS\xdbheE\xba/\xa2\x17$-j;\xd1\x86\xf79vE\xee\x18\xe5\xed\x02\xda\x03>\xb6A\xcb\xad.z\x9dv\xea1|\xb0R\x18\x91]}a\x93/\x9bXU\xe8\x11\xd7[}\xc7\x1d4\xaf\x9c\xaf\xe4\xa8+!\xce\x92\xcc\x02%pVu2\x81\xe3\xf4}\xc9\xafLG\x0b\x01\x8auV(\xf8\x12Pf\xbb\x88\xc9(\xd8\x8am\x93#x\xb7:\x9c\t\x18\x1f\x85"8Y\x15\xd7\x9d\xab\xe4\xce}\xc2)\xaa\x89{ \xcb~\xcdP\x92\xaa\x1bu\xac\xa5\xde\x93\x80\x0c\x95F\xf2\x88(8\x14\xde\xb9#/Y\x84+\x13R\x1c\xdb\x1b\xa1\xb6\xf5\x81\x18\xef\xf2\xc5\xbf\x96\xef\xa3\x10N\x9c\x14%\xe3l\xcb\x9f6+\xee\x83M\x0cY\xb3-\xd1,\xed\xbb0&\xb4\x9a\xaa\x15\xc9m\xfb\xbbk\x11\x9b*\x8c#z\x8b\xa2|@\xbe>X\x9d\xaas\xa3\xdf\xf6hS \x82\xab\x86\xff\x8d\xa4\xa9\x84\xf7,\x18]')

	fake.md5(raw_output=False)
	# '35ff58d72d073e6534ce28076921c828'

	fake.sha1(raw_output=False)
	# '07b8dd4547d0b5dfea85a1ea6cf58b0ca4a4396c'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '1ce582dd05d6020c713791cf390804e19c08c16051bcb674ba5d838393b28b61'

	fake.uuid4()
	# '354b6d86-7018-a7ad-0483-52732158ca2f'

	fake.language_code()
	# u'apn'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Kairys'

	fake.name_female()
	# u'Butkus, Gytis'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Erika Ambrasas'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Viktorija Ambrasas'

	fake.first_name()
	# u'Arvydas'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Pijus'

	fake.first_name_female()
	# u'Ineta'

	fake.last_name_female()
	# u'Naujokas'

	fake.last_name()
	# u'Gai\u010di\u016bnas'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'+37011440930'

	fake.msisdn()
	# '4673690420591'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'560 Gai\u017eauskas Place Apt. 209\nAdrijaport, OK 85819',
	#     'birthdate': datetime.date(1914, 2, 10),
	#     'mail': u'juozasgaldikas@gmail.com',
	#     'name': u'Eidvil\u0117 Urbonas',
	#     'sex': 'F',
	#     'username': u'elena58'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'106 Po\u0161ka Branch\nJor\u016bn\u0117burgh, SD 34121-4881',
	#     'birthdate': datetime.date(2017, 8, 8),
	#     'blood_group': '0-',
	#     'company': u'Galdikas Group',
	#     'current_location': (Decimal('68.7514825'), Decimal('-123.773735')),
	#     'job': 'Building control surveyor',
	#     'mail': u'dainius56@yahoo.com',
	#     'name': u'Tomas Naus\u0117da',
	#     'residence': u'626 Naujokas Junctions Apt. 346\nArnoldastown, VI 69354-5858',
	#     'sex': 'F',
	#     'ssn': u'611-55-3456',
	#     'username': u'bpocius',
	#     'website': [u'http://povilonis.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'wEFTSykndIyebdPRXlAe',
	#     764.98,
	#     -16610382.23253,
	#     datetime.datetime(1982, 7, 30, 21, 53, 53),
	#     u'QEDroyvUCkxMwOsovmcN',
	#     u'hgaizauskas@hotmail.com',
	#     Decimal('-95322643175.5'),
	#     datetime.datetime(1984, 12, 27, 7, 30, 29),
	#     u'MSstomQVLirJgFWunuWw',
	#     u'http://poska.com/register/',
	#     6022,
	#     786.12328791879,
	#     6874007852.0]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'gpocius@gintalas.biz',
	#         u'wPhnGQFvoksvfmTAjZNO',
	#         u'gIGvWlbUDazMSZRlfbFX',
	#         u'sVvBjFCAVMtlgLstftPr',
	#         u'yJsEbUZaiNnvsmxkjlcL',
	#         u'ncFuSHVuhwFxSQvhbiGz',
	#         Decimal('63077.228'),
	#         21555.3439433,
	#         u'LPADOHiCeNzAgmdgCwaO',
	#         u'http://stankevicius.com/'],
	#     {   u'a': u'YgkhDuoguRQrMNeOZaYl',
	#         u'accusamus': u'FVPfaFekWVGpooXmBroK',
	#         u'ad': 928,
	#         u'ducimus': u'http://galdikas.com/',
	#         u'enim': u'hLagESxCnrdHhPxDMRMD',
	#         u'est': u'YlbGRFwqwEUElLTYpGUE',
	#         u'iste': 6799888817.853,
	#         u'nostrum': u'https://www.nagys-nauseda.com/category.htm',
	#         u'sunt': Decimal('-980.5896504'),
	#         u'ut': 6775},
	#     {   u'architecto': {   4: u'XMVPHKfaeUUZwVceuCXX',
	#                            5: [   u'ZOUVCEUQPwNQkRnmpPBP',
	#                                   u'algirdasstankevicius@stankevicius.com',
	#                                   datetime.datetime(1998, 4, 24, 20, 9, 4)],
	#                            6: {   4: u'ptuYNBEpppqDwlbhNUHk',
	#                                   5: u'https://naujokas.net/app/categories/author/',
	#                                   6: [   u'pYxIxwaxPTXDfQDrVmqJ',
	#                                          u'kavaliauskasjulius@vsiliauskas-kaupas.com']}},
	#         u'commodi': {   1: 987473875.88577,
	#                         2: [   u'pdZPOcEoDppkGEdiHRZK',
	#                                668288476.43871,
	#                                u'uqCxQPqSYmaYpVzXDUQf'],
	#                         3: {   1: datetime.datetime(2007, 2, 8, 17, 41, 54),
	#                                2: u'https://www.gronskis.com/login/',
	#                                3: [   u'http://kalvelis-galdikas.net/categories/wp-content/categories/about/',
	#                                       u'ucqAcovyghXSeNWtBRJQ']}},
	#         u'molestiae': {   7: u'pvbxFtpFaIMaLsYGSdwY',
	#                           8: [   Decimal('-3035.68706'),
	#                                  Decimal('-684953.386015'),
	#                                  u'https://www.kaupas-naujokas.com/about.html'],
	#                           9: {   7: datetime.datetime(2013, 2, 11, 20, 35, 45),
	#                                  8: u'iGByhdZnZscacKVgXXin',
	#                                  9: [   u'ONUiRoGQvsBAeFIMrWLm',
	#                                         u'rsQJoAwsnjTQJeVeNVhw']}},
	#         u'nihil': {   5: 4375,
	#                       6: [-9.6247, u'LqkuediFETNdaTbXGuae', 4932],
	#                       7: {   5: 759,
	#                              6: u'http://kavaliauskas.com/main/',
	#                              7: [   Decimal('-9.05982321777E+14'),
	#                                     3889.66463143]}},
	#         u'numquam': {   8: u'VRmyEGWMlXyaKLpBXuDF',
	#                         9: [   u'uORzzNfapKrnVQsIoAWj',
	#                                u'lejapovilonis@gaizauskas.com',
	#                                u'https://petrauskas.org/'],
	#                         10: {   8: datetime.datetime(1978, 7, 28, 20, 42, 4),
	#                                 9: u'oQRvnoapPdBdBrGxkLjL',
	#                                 10: [   Decimal('-4.4787'),
	#                                         Decimal('-141477287388')]}},
	#         u'perferendis': {   6: u'IxyAmcyCpVtPpohZmUEi',
	#                             7: [   u'http://www.nauseda.biz/register/',
	#                                    u'cVDellukYeEjBAuutAQE',
	#                                    8937],
	#                             8: {   6: Decimal('-98532853295.9'),
	#                                    7: u'http://nauseda.com/main/wp-content/tag/login.htm',
	#                                    8: [   Decimal('1725.13587749'),
	#                                           datetime.datetime(2014, 3, 19, 6, 48, 34)]}},
	#         u'quod': {   0: Decimal('-944903.415'),
	#                      1: [   u'jgrinius@paulauskas-kavaliauskas.com',
	#                             3621,
	#                             u'xWhvIWRaecgQJhsxbIts'],
	#                      2: {   0: -179002695525783.0,
	#                             1: u'viktorijagaldikas@vsiliauskas.info',
	#                             2: [   u'mMniWNratxRuKqgNcgCg',
	#                                    datetime.datetime(1989, 11, 8, 0, 59, 56)]}},
	#         u'repellat': {   3: 9685,
	#                          4: [   Decimal('-2.49117503033E+13'),
	#                                 -575366.61,
	#                                 datetime.datetime(2012, 2, 18, 9, 11, 46)],
	#                          5: {   3: u'mrRhWtgSfSplYcYDioTD',
	#                                 4: 5730,
	#                                 5: [   Decimal('85748883739.9'),
	#                                        545465664.21923]}},
	#         u'ullam': {   9: 8142,
	#                       10: [u'mWNOeYWJTySxTZGTozGt', 3440, 73692.0],
	#                       11: {   9: u'https://ginzburgas.net/list/categories/category/',
	#                               10: u'sarunas34@hotmail.com',
	#                               11: [   u'mSDbvhQKfKEloTtoSXlG',
	#                                       u'jQbaIvwMmHamDKrHeSQs']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   2492,
	#     u'YidRNtlEBxpDeHjrZoCk',
	#     u'OOPMAwkxPSyNZLRtUpQC',
	#     u'qWOHqMHcIUGkgipsbiWZ',
	#     8838,
	#     Decimal('-4.1653655'),
	#     u'iqUhPCSJAYjLwHNNbydk',
	#     datetime.datetime(2002, 3, 27, 23, 12, 14),
	#     u'https://gaiciunas-kalvelis.org/search.html',
	#     u'dvwHRiGojijGViYCEeSO']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'EwTIDqgMPxbSryFGjqJO',
	#     u'lzukauskas@hotmail.com',
	#     datetime.datetime(1997, 11, 19, 4, 39, 20),
	#     540777896.927,
	#     8185147634371.0,
	#     datetime.datetime(1997, 2, 6, 5, 25, 14),
	#     u'http://sakalauskas-gronskis.com/tag/list/privacy.php',
	#     u'nbpDNAirFQftfKfbsIrD',
	#     u'nPJWGDwFZTEUBREKGlcm',
	#     u'CWNYhnwOFChqtTvlALpT',
	#     u'gGzMhSDrHULecrsXbWDJ',
	#     datetime.datetime(2010, 9, 8, 15, 14, 58))

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([1952, u'LbWeICtXpjTfEiSCZjLT', u'UOeQHXMLIdixdPGuzFyu', u'JbxaJGrwmuAKueBFQhno', u'noIiWlufwSuVHHjlLeYy', u'giMWECpHpTPZhPkgoLFU', 2453])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'eaque': datetime.datetime(1986, 8, 21, 5, 10, 25),
	#     u'excepturi': 9836,
	#     u'harum': 5872,
	#     u'minus': u'ramunepaulauskas@gmail.com',
	#     u'necessitatibus': 8760,
	#     u'pariatur': -2.5862231,
	#     u'reiciendis': datetime.datetime(1978, 7, 29, 7, 2, 20),
	#     u'sapiente': 3755,
	#     u'suscipit': 7068,
	#     u'voluptatibus': u'VfgdwWVcIvWoZUgfLQdM'}

	fake.pyint()
	# 8711

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'535-04-8546'

	fake.ein()
	# u'63-7086590'

	fake.itin()
	# u'970-94-3952'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/2012-02-16 12:39:42 Firefox/12.0'

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

	fake.opera()
	# u'Opera/9.99.(X11; Linux i686; ln-CD) Presto/2.9.183 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2017-11-10 18:40:17 Firefox/10.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 NT 6.2) AppleWebKit/5311 (KHTML, like Gecko) Chrome/53.0.800.0 Safari/5311'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; sd-PK) AppleWebKit/532.7.1 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.7.1'
