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

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

::

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

	fake.building_number()
	# u'4652'

	fake.street_address()
	# u'2781 Gailius Mission Apt. 455'

	fake.postalcode_plus4()
	# u'11521-2882'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'East Ingrida'

	fake.zipcode_plus4()
	# u'11403-3596'

	fake.state_abbr()
	# u'NE'

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

	fake.street_suffix()
	# u'Ports'

	fake.city_suffix()
	# u'shire'

	fake.military_dpo()
	# u'Unit 2440 Box 5194'

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

	fake.country()
	# u'Congo'

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

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

	fake.postalcode()
	# u'88973'

	fake.address()
	# u'548 Arminas Ridge Suite 698\nIngridaberg, VT 10529'

	fake.state()
	# u'Kansas'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Ki\u0161ka Radial'

	fake.zipcode()
	# u'43377'

	fake.postcode()
	# u'48331-2956'

	fake.military_apo()
	# u'PSC 9762, Box 0974'

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

::

	fake.license_plate()
	# u'LO 50995'

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

::

	fake.bban()
	# 'VKVS0594594168420'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB91ODHG8737466531815'

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

::

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

	fake.ean13()
	# u'2569780529036'

	fake.ean8()
	# u'04913382'

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

::

	fake.rgb_css_color()
	# u'rgb(45,37,160)'

	fake.color_name()
	# u'AntiqueWhite'

	fake.rgb_color()
	# u'197,37,117'

	fake.safe_hex_color()
	# u'#bb6600'

	fake.safe_color_name()
	# u'navy'

	fake.hex_color()
	# u'#faee1c'

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

::

	fake.company()
	# u'Naru\u0161is LLC'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Digitized fault-tolerant pricing structure'

	fake.bs()
	# u'envisioneer cross-media models'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Mastercard\nErnestas Grinius\n5463539825175918 05/26\nCVV: 410\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NXT'

	fake.currency_code()
	# 'GBP'

	fake.currency_name()
	# 'Djiboutian franc'

	fake.cryptocurrency_name()
	# 'Bytecoin'

	fake.cryptocurrency()
	# ('VTC', 'Vertcoin')

	fake.currency()
	# ('RSD', 'Serbian dinar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 7, 3, 2, 38)

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

	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(2007, 1, 9, 22, 24, 52)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2016, 8, 23)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 8, 20, 30, 1)

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

	fake.day_of_week()
	# 'Wednesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 10, 22, 21, 22, 42)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 6, 10, 11, 23, 48)

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

	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(1972, 12, 14)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1975-01-05T19:53:58'

	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(2010, 11, 1)

	fake.month()
	# '02'

	fake.year()
	# '1981'

	fake.day_of_month()
	# '30'

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

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

	fake.century()
	# u'XVIII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(7, 48, 39)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 11, 0, 37, 6)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2007, 11, 6, 11, 13, 24)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '20:55:58'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 4, 30, 1, 31, 16)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(139, 4, 11, 5, 23, 17)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(15010, 76278)

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

::

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

	fake.mime_type(category=None)
	# u'multipart/alternative'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/praesentium/distinctio.txt'

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

	fake.file_name(category=None, extension=None)
	# u'minus.txt'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'njankauskas@jankauskas.com'

	fake.url(schemes=None)
	# u'http://www.naujokas-ambrasas.biz/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'privacy'

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

	fake.safe_email(*args, **kwargs)
	# u'egle61@example.org'

	fake.ascii_email(*args, **kwargs)
	# 'giedriusgailius@pocius-poska.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'skaupas@kalvenas.org'

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

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

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

	fake.slug(*args, **kwargs)
	# u'facilis-minus-animi'

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

	fake.company_email(*args, **kwargs)
	# u'ugnenauseda@gagys.net'

	fake.uri()
	# u'https://grinius-stankevicius.com/post.htm'

	fake.ipv6(network=False)
	# '11c8:7c03:74da:408c:43ff:fac0:453e:31f3'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'ypovilonis@example.org'

	fake.mac_address()
	# u'55:83:be:5e:a8:04'

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

::

	fake.isbn10(separator="-")
	# u'0-211-00912-1'

	fake.isbn13(separator="-")
	# u'978-1-128-32939-6'

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

::

	fake.job()
	# 'Engineer, chemical'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Nobis illo enim accusantium asperiores odio.\nEarum blanditiis culpa quasi. Aspernatur pariatur reprehenderit id ducimus.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Architecto eius iste molestias. Iusto ratione quae iusto.',
	#     u'Officia quisquam est quisquam nesciunt animi rem eligendi. Laboriosam fugit deleniti suscipit. Aut laudantium voluptatum quisquam velit doloribus. Quos excepturi enim iste eveniet.',
	#     u'Optio voluptates eius illo quibusdam. Debitis nesciunt aliquam quidem et vero. Velit ipsam laboriosam dolorem explicabo.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Esse voluptate magni.',
	#     u'Fugiat ratione doloremque ducimus.',
	#     u'Laborum voluptas aspernatur pariatur velit illum.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Explicabo eos ducimus aliquam enim eum. Modi molestiae delectus recusandae dolor earum. Mollitia enim sunt nihil.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Vitae qui ipsa similique quas et nobis.'

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

::

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

	fake.locale()
	# u'es_US'

	fake.binary(length=1048576)
	# bytearray(b'`s(`Q\x01\xec\xa27\x1e\xd9\xbd\x03\xf60\x8a[\xbb\x0e\xc5\x05=\x1f8\x8a\x03\x10\xdcsk\x87BydPX.+\xa7^\xf0_\xfb\x10xj\x149\xff\xb1\xa2\x0c\x8b\x8e\x05;\xf2NT\xfe\xe0\xb1\x93\xb5S9\xd9\xa7\xf4\xc1\x18U|\xe4z\x80\xbf;3_\x13\'\x8c\xee\xd5\xc0\xb9\xf0\xcc<\xf7\xa2G\x13\xd9\x97\x02\xef\x9b\x01\\_D\xf9\n\x899g\xfb\x14(8@\xca\xdd\'\xd2:\xf5\xcc\xf6y\xe7\xdc\x98O\xc3XX\xcc\xe5\x86=\x96]\x9a\xbdj\xb4e\x0f\xae\t\x05\xd4\xe24\x0f\xdb\xb2\x9d\xec\x1e\xf6C\xdfb\xbe\x0c\xee\x91\x17\x9fb~\x13\x7f\xfe\xe8\xccz\x9b\xd4u\xfa\xdb;{?`\xf5\x19\xd1\xe3\x93v\x95\xdd\x9f\xcd\x03\xca\xc9i\xe9+p\x84\xc7\xdd\xc4\xfc\x9f\x86F\x11\xb4\xc0\xd2H\x04\xb5~\x87~\xfb\xac\xe3#y\xf4\xe2\x92\x03y\xf1\xa7\xce\xcfG\x7f\x13\x98\x8d\x02r\x8e4d\x96\x1d\x83\xb8\xbb\xd6\xcf\xd7u\xf5\xdf\x81\xd6/>\x91Z\x8c\x1a\xef\x8b\xbe\x81\xb9h\x17\xc3:\xa2\xf5K\xaf\x91\xb2&!^\xf2u\xb6\xe8\xbf4\xf7\xa3\xfc}P\xcf\xc9\xcf\xa2\xae\xf6\xbck\xc1\xd7\x1f\xbf\xc6}RSB;\xca|\x8f>Ue\x1f\xc7O\xf7\xde\xd4\x84\x97\xebL\xd8nH\xc0t\xbat:/\xab\xcfZ$ \xb2\x80\x87X\xe1\x0f\xc7+@\x9ec\x17\xda\xae\x1d\x1c\xca\x9c\xbf\xae\x8a5\xa8;t\x17&\x10\x91$\xe1)\x8a\x85w\x1d\xe5\xbc\xe1\x9a\xdb4\x05\xfe$Y\x1c\x0fR\xac>-Y\xa8]\n\xfa\xbc[\xb3\xd7\xc6\xa3\x80\xe7\x94Y\xa5m5\x9e\x88\x02\xc3\xb9>\xaa\xea(\xb3\xb5\t?\xb5\xb9Rd\xcf\xb3\xe6\xd7\x1eo\xf8\xb7\x16\xde\xab\x7f~\xb1\x15\xe1\xf6"P\xa7V\xc9_\xb3\xfc\xfa\x04\xfe\xcc\xe1U\x1c\xe1`\xab\xe0\x1a\x8f\xe0\xa3\x924*\xf6\x02^\x17\xfc\xc6Jh\xfd\x94\x05\xf3}/\xf9\x9b/\x1e\x1f\x88\xb1i\xec\x12H\xabj\x8b\x8e^Xa\x1f\xef\xfe\xca,;\xe2\xb7\xf8\xd0\x83\xe1B\xc2\x84\x88\x15\xd4\x19\xf9\xa18y\xf1\x92?q\xa8\xabH\n\x89\t\xd6\xcaa5\xda\x98\xfcf\x7f#\x8d0\xedZTb8\xc2.}-\xa6\xf6|\xd6v\xcb\xe1\xf5\xcfD\xea\xb7F~\xe7\xffIT\xc9RF&\xe3\xe0\x1a(\xf1\xdd\xdd:N\x1cxR?]hW\xbc\x05\x16)[3a\xeeX\xd2\x83\xbdZ\xfd\xd8A\x81@d"_\xb2=\xc2\x84t\xc5\xf9\x8a\x99\xd21\xe2\xafI#\xd0q5\x19_k<[\xec\x89\xd1%h\x8a\x90\xce\x06z{\xae\xe5\x1d\x89;\xa1:\x0f\x1fg\x7f\xe3\xdb\xe6\x8br\xac\xb9\xe7\x90\xf5c<\x1a\x0f\xd6\xc8F\xff:\xf9\xabs\xbbJ\x1e\x8bu\x8e$\x940?\x8dRZ!R\xc25\xa5\x0e\xf6\xbc\xf1\x96d\x10>\xdcE_y\xea\x95Y\x92|h\xf03\x908\xf6\x91\x19\xf3\xd1\xb5k\x85\x8b\xc4\x05v\xd6\xcd\xa6y\xea\x86\x8d\x02\x10\x9a\x04\x15\x99\xa2\x1cq9\x8e\x8fiOL\x1f\x11\xffm\xb7\x87~\xe6\xb1\xbbC\xd8\x0f\x1eI\xd3}L\x0b\xdfK\xe3\x03F\x1b\xb1\x00\xb9PC\xb9q\x04\xaf\xc1sH\xf2\xb3T>\xcb?\x949\x00\xa6T\r@\x8a\xa5\x18\x06\xbc\xbcz?\x15\x81Z\xa4\x01\xdfKIKg\x0e\x97\x17\r\xe6\xf9w\x7f\xd9\x90c\xe6\xdb\xea@\xcb\xdb\xc4=\xb9\x03\xcb\xc6\xa5\xb9\xf9\xc6*[j+\xcd\x98[\xaa8\xa7\xfb*\xf8F\xa9\x15\x03\xe4gl;T\xf1+9\xe8\x19%\xe1^\x19I\xd2\x0bb\x0f\xd8\xc2\xe12g\xec\x10\x0e\xf9\x15\n\xe2\x10\x80\x03j\xb6\xba\xaf\x98\xbct\xf3\x11^\x14W\xae\x88\xd8\xcf\x92%v\x88X[pa\xed\xaa\xc7\xd1\xa7\xca\xc3o\xafe\x88V\x94\xbb\x8d\xbc\x12%g\xfd\x08\xb0;\xee1\xb2I\x1ai\x8b\xce\x0c~9\xa4\x15\xbfv\x93\xad\xf0u"\x87\x1f2\xa5\x98\xf6\xee\x97\xe8\xb7\xcbe\xb7;cH\xc3\x9a\x0b\x88nU\x95b\x1af\xeb\x91t\xd0\xe6\x17\x9d\xba\x08\xd2`M\xd8m\x8c\x91^\x80q\x1a)V\x13\xa12\xb2\x17\xa5n\x08j\x7f\x00\xf6')

	fake.md5(raw_output=False)
	# '691c5e2ccd19d3d00e89f25e67bef7ba'

	fake.sha1(raw_output=False)
	# '2cb3773166f8cd598114be2c3822ed3b17ba8bf1'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# 'cfcfc351-0369-0740-91e8-e639a5a0edd9'

	fake.language_code()
	# u'ss'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Akelis'

	fake.name_female()
	# u'Akelis, Ugn\u0117'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Jolanta Paulauskas'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Mant\u0117 Gagys'

	fake.first_name()
	# u'Justas'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Kristina'

	fake.first_name_female()
	# u'Laurynas'

	fake.last_name_female()
	# u'Gai\u017eauskas'

	fake.last_name()
	# u'Paulauskas'

	fake.prefix_female()
	# u''

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

::

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

	fake.msisdn()
	# '9062317191142'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'76594 Adomas Tunnel Apt. 923\nMedaside, MS 61840',
	#     'birthdate': datetime.date(1992, 4, 25),
	#     'mail': u'kairysraminta@gmail.com',
	#     'name': u'Tajus Kazlauskas',
	#     'sex': 'M',
	#     'username': u'gaizauskasleila'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'5250 Kaupas Forest\n\u0104\u017euolasmouth, RI 37209-3202',
	#     'birthdate': datetime.date(1947, 5, 16),
	#     'blood_group': 'B+',
	#     'company': u'Gai\u010di\u016bnas-Kairys',
	#     'current_location': (Decimal('80.359553'), Decimal('54.965323')),
	#     'job': 'Surgeon',
	#     'mail': u'fgaizauskas@hotmail.com',
	#     'name': u'Vsiliauskas, Ariel\u0117',
	#     'residence': u'6770 Nedas Shoals Suite 118\nEast Smilt\u0117, VA 37786',
	#     'sex': 'M',
	#     'ssn': u'693-48-5391',
	#     'username': u'galdikasvakris',
	#     'website': [u'https://urbonas.biz/', u'http://www.urbonas-zukauskas.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'irma06@gmail.com',
	#     u'ddWMxdZMQohJqIdgZPQN',
	#     u'oJRKvJxgsRZflOBnlhlA',
	#     u'http://nauseda.com/terms.asp',
	#     datetime.datetime(2011, 7, 2, 2, 54, 42),
	#     u'https://zukauskas.com/faq.jsp',
	#     u'WqeOMrPAibHAHYzBPeax',
	#     -72240738.86814,
	#     datetime.datetime(1981, 6, 19, 18, 26, 29),
	#     497]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'lakGryaohSiqeXgdLGZd',
	#         u'https://www.gagys-gronskis.com/explore/app/register.html',
	#         Decimal('-19769932941.6'),
	#         Decimal('6517.22'),
	#         2376485159033.51,
	#         u'https://www.kalvaitis.biz/home/',
	#         u'WkgEpOlatDybfFmMgxDG',
	#         9539,
	#         2435,
	#         20485307169.6],
	#     {   u'corporis': u'nojus69@yahoo.com',
	#         u'doloribus': Decimal('-4963.5501'),
	#         u'illum': Decimal('6.33914205587E+13'),
	#         u'labore': u'ujRMsVRCGSGLbBRyNbey',
	#         u'officia': datetime.datetime(1995, 6, 9, 21, 11, 30),
	#         u'praesentium': datetime.datetime(2011, 9, 9, 10, 39, 27),
	#         u'repellendus': datetime.datetime(1984, 1, 3, 1, 6, 13),
	#         u'sunt': u'http://zukauskas.com/category/',
	#         u'tempora': Decimal('-5.821306999E+12'),
	#         u'tenetur': datetime.datetime(1998, 12, 14, 17, 1, 57)},
	#     {   u'ad': {   4: 9656,
	#                    5: [   u'HDiMgafTzRSkNoGIHHNZ',
	#                           u'sIsCmFCVnZjHWYQciLVW',
	#                           datetime.datetime(1982, 1, 11, 13, 37, 14)],
	#                    6: {   4: u'JfbMNtusIJYHYxoANtTw',
	#                           5: 2555,
	#                           6: [   u'cmMfnfMvkWivkRoIPsnn',
	#                                  u'igailius@butkus.biz']}},
	#         u'aut': {   5: u'UhUDTONrFbNarbepXIYT',
	#                     6: [   u'NvgJYBZklaLQrotieCeD',
	#                            u'https://gaizauskas-paulauskas.com/search.html',
	#                            202474577.958],
	#                     7: {   5: 4031284.18559173,
	#                            6: u'kPpTLDdIhHUbIZHJBkAH',
	#                            7: [   u'ujajQrdgwHQvXCPFmCKk',
	#                                   datetime.datetime(1973, 3, 27, 14, 49, 14)]}},
	#         u'cumque': {   0: u'sarunas59@yahoo.com',
	#                        1: [   u'vakris83@gmail.com',
	#                               u'LPmwYTyppVJbpomWsJHQ',
	#                               7871],
	#                        2: {   0: 8.99,
	#                               1: Decimal('31242460625.0'),
	#                               2: [   u'ibmsmssxhMOiOGTGQRcZ',
	#                                      u'CkyqBNvDjMOgvFaSTalA']}},
	#         u'delectus': {   3: u'QkCXUhMxctKdxEsxgNlO',
	#                          4: [   u'YSYtvspufYPoyKNubtOk',
	#                                 u'pKqYbMyBHudtRqDEHFbE',
	#                                 882361000682850.0],
	#                          5: {   3: 3349,
	#                                 4: u'kalvaitissvetlana@gagys-vsiliauskas.com',
	#                                 5: [   u'HHcbuCVWlgIkhPjaDKyr',
	#                                        u'CZDzEUrCiJBTcFkxkpRV']}},
	#         u'explicabo': {   8: 9364,
	#                           9: [   4365,
	#                                  datetime.datetime(1982, 7, 24, 3, 25, 41),
	#                                  9438],
	#                           10: {   8: u'FNqIzrSfcxqsxbNYAecl',
	#                                   9: Decimal('3.03590040681E+12'),
	#                                   10: [   Decimal('70.787525529'),
	#                                           u'zKeiLDrqUJXCdexayHIB']}},
	#         u'illum': {   6: datetime.datetime(2007, 7, 11, 9, 55, 29),
	#                       7: [   Decimal('9121147.0'),
	#                              u'sZpKUWbRjHFaZqBpmOAF',
	#                              u'simonagaiciunas@gmail.com'],
	#                       8: {   6: u'http://nauseda.com/tag/main/',
	#                              7: u'https://kalvelis.com/posts/list/main/',
	#                              8: [6781, u'McskzbxAYYGCnHHGWMjP']}},
	#         u'nulla': {   2: u'ISwjERfIpUObApFLNUFq',
	#                       3: [   7319,
	#                              u'MQfXucyjpaqozepLbecl',
	#                              u'ZfOWpvrIWSpWHpsTaikb'],
	#                       4: {   2: 1101,
	#                              3: u'mPHYgKyvvHlFGIYgRJwk',
	#                              4: [u'bdwKnfWeZleftondeUZO', 1955.6]}},
	#         u'saepe': {   1: u'IziajQticSWEReImXJoM',
	#                       2: [   8791,
	#                              u'kristupasginzburgas@gaizauskas.com',
	#                              -543696.1663365],
	#                       3: {   1: u'tnuxjYopqxokbFqrYRDy',
	#                              2: u'http://www.kazlauskas.net/faq.asp',
	#                              3: [   u'https://kaupas.com/blog/posts/index.htm',
	#                                     9928]}},
	#         u'sint': {   7: u'YjSYtzhJuhiHEfMOqulh',
	#                      8: [   u'mYYAnNkXKaIwUSOtyeqM',
	#                             u'nausedaramune@yahoo.com',
	#                             u'GxfjnSxHhUzEmFCSxumZ'],
	#                      9: {   7: u'WDeERJMOBbQaYpnbDEEx',
	#                             8: u'PMFskGjytHarTbojvHPv',
	#                             9: [8725, u'pzaHvjcjBJcxvHkaXdIv']}},
	#         u'sit': {   9: u'FkTySGqBNNMpVNRjFJOO',
	#                     10: [   -39170614213.0,
	#                             u'http://www.gronskis-gronskis.com/search/posts/list/privacy.jsp',
	#                             u'SeXOJoCEHAIiWbPNyBsx'],
	#                     11: {   9: 3404,
	#                             10: u'dzukauskas@kalvelis-galdikas.com',
	#                             11: [   datetime.datetime(2008, 12, 6, 7, 55, 16),
	#                                     u'UAQbnhvLqODVXPPxEcOE']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('-587.428042707'),
	#     u'https://narusis.com/',
	#     7611,
	#     u'DafovRDkRBNRRaoTNITr',
	#     u'gJEpuGNNPDIBowdggUUe',
	#     u'kcIPuTbkbBUStxFYpTRA']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'NbjjhCDhRkXHspKYpCom',
	#     101,
	#     datetime.datetime(2006, 5, 24, 7, 28, 53),
	#     datetime.datetime(1976, 1, 11, 19, 35, 44),
	#     -21.6288696842,
	#     -121758.602)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('9305871.87'), u'sQZenYaisbOOwtIVOgSZ', u'vpYquNHOLtVDRqkNyXvF', 138, u'paulauskaslaurita@galdikas.info', 8315, 1884, u'http://www.vsiliauskas.net/category/homepage.html'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'deleniti': u'HboDdDutpHFgCrRGYJTX',
	#     u'eaque': u'http://www.gintalas.com/',
	#     u'error': u'http://narusis.net/category.htm',
	#     u'explicabo': 6706,
	#     u'laborum': u'ZmdncTTowrxUWVEwdRDr',
	#     u'molestiae': 672861762992827.0,
	#     u'nisi': u'VPJJgZOAfeuzBStuFsxE',
	#     u'ratione': Decimal('21589445047.4'),
	#     u'sed': u'zukauskasindre@stankevicius.com',
	#     u'tempora': u'http://butkus.com/wp-content/posts/author.asp'}

	fake.pyint()
	# 1996

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'019-76-4456'

	fake.ein()
	# u'39-0095783'

	fake.itin()
	# u'907-97-1456'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_0; rv:1.9.5.20) Gecko/2012-01-16 07:13:53 Firefox/3.6.15'

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

	fake.opera()
	# u'Opera/9.45.(Windows NT 4.0; el-GR) Presto/2.9.184 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_4) AppleWebKit/5360 (KHTML, like Gecko) Chrome/31.0.867.0 Safari/5360'

	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 5.1) AppleWebKit/5331 (KHTML, like Gecko) Chrome/35.0.890.0 Safari/5331'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; ca-IT) AppleWebKit/533.40.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6533.40.6'
