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

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

::

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

	fake.building_number()
	# u'875'

	fake.street_address()
	# u'831 Nerijus Field Apt. 129'

	fake.postalcode_plus4()
	# u'19259-8769'

	fake.city_prefix()
	# u'East'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'South Dominyka'

	fake.zipcode_plus4()
	# u'95668-9630'

	fake.state_abbr()
	# u'DC'

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

	fake.street_suffix()
	# u'Streets'

	fake.city_suffix()
	# u'shire'

	fake.military_dpo()
	# u'Unit 9078 Box 9880'

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

	fake.country()
	# u'Croatia'

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

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

	fake.postalcode()
	# u'85621'

	fake.address()
	# u'561 \u017dukauskas Rue\nTomasfort, KY 54248'

	fake.state()
	# u'California'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Kalv\u0117nas Lights'

	fake.zipcode()
	# u'06041'

	fake.postcode()
	# u'71446-8029'

	fake.military_apo()
	# u'PSC 2167, Box 4860'

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

::

	fake.license_plate()
	# u'XCL 063'

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

::

	fake.bban()
	# 'KONA5502596774969'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB48XRAV9888643342387'

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

::

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

	fake.ean13()
	# u'1807381103202'

	fake.ean8()
	# u'61230835'

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

::

	fake.rgb_css_color()
	# u'rgb(65,203,64)'

	fake.color_name()
	# u'LightSlateGray'

	fake.rgb_color()
	# u'46,223,228'

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

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#56f32a'

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

::

	fake.company()
	# u'Pocius Inc'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Switchable homogeneous application'

	fake.bs()
	# u're-intermediate bricks-and-clicks paradigms'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'American Express'

	fake.credit_card_full(card_type=None)
	# u'VISA 13 digit\nArminas \u017dukauskas\n4303350245068 05/22\nCVC: 125\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'DRC'

	fake.currency_code()
	# 'JEP'

	fake.currency_name()
	# 'Comorian franc'

	fake.cryptocurrency_name()
	# 'Sirin Labs'

	fake.cryptocurrency()
	# ('ETH', 'Ethereum')

	fake.currency()
	# ('XDR', 'Special drawing rights')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 11, 14, 32, 14)

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

	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(2006, 11, 11, 19, 29, 47)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2017, 3, 2)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 3, 1, 37, 17)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 3, 12, 8, 22, 17)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 6, 8, 21, 14, 11)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1989, 10, 9)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 7, 9)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1984-10-29T05:30:36'

	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(2013, 1, 22)

	fake.month()
	# '01'

	fake.year()
	# '1988'

	fake.day_of_month()
	# '18'

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

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

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1993, 11, 23)

	fake.time_object(end_datetime=None)
	# datetime.time(17, 58, 12)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 10, 14, 47, 21)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1975, 7, 20, 17, 57, 29)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 24, 3, 50, 52)

	fake.month_name()
	# 'October'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(591, 1, 22, 0, 8, 6)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(6577, 20431)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/ea/cumque.js'

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

	fake.file_name(category=None, extension=None)
	# u'delectus.numbers'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/710/465'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'evelinaurbonas@yahoo.com'

	fake.url(schemes=None)
	# u'https://nagys.info/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'register'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'gjankauskas@gailys.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'titas51@jankauskas.com'

	fake.domain_name(*args, **kwargs)
	# u'butkus.info'

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

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

	fake.slug(*args, **kwargs)
	# u'necessitatibus'

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

	fake.company_email(*args, **kwargs)
	# u'titaspaulauskas@petrauskas.com'

	fake.uri()
	# u'https://ambrasas-kairys.com/faq.php'

	fake.ipv6(network=False)
	# 'f07:7576:c66c:3397:86a7:e3d:5ce7:dd71'

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

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

	fake.mac_address()
	# u'ce:00:6b:c3:bb:4d'

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

::

	fake.isbn10(separator="-")
	# u'1-01-506859-6'

	fake.isbn13(separator="-")
	# u'978-0-7774-2675-3'

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

::

	fake.job()
	# 'Hospital doctor'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Illum quis placeat assumenda. Exercitationem accusantium beatae ut possimus voluptate nulla. Ipsa quam iure culpa distinctio vitae blanditiis.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Cum inventore suscipit impedit accusantium deleniti veniam. Quas iste dolorum saepe animi est.',
	#     u'Laudantium exercitationem nobis ipsam accusantium quisquam. Veniam doloremque porro pariatur neque eos dolorem.',
	#     u'Adipisci sint corrupti maxime consectetur necessitatibus. Ea minus ipsam ea. Beatae quia odit minima quod ipsam dolore.']

	fake.words(nb=3, ext_word_list=None)
	# [u'aliquid', u'rerum', u'fugiat']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Accusantium placeat perspiciatis.',
	#     u'Exercitationem quis minus error.',
	#     u'Eveniet consectetur repellat qui illum tenetur.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Quas veritatis veniam dolor eaque doloremque molestias. Quas laboriosam ullam. Occaecati tenetur voluptates non asperiores asperiores.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Eum quisquam perspiciatis consectetur vero.'

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

::

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

	fake.locale()
	# u'ca_IT'

	fake.binary(length=1048576)
	# bytearray(b'l\xec\xb0\xf3\xbe\xa2\xab\xb8\xf9\xe3\x83\xdeH\x94l\x80d\xbe\x84\x99\xe1~\xf9c&\xb4\xa95W\x9a\xd1\xc3(B\x93&\xb0\x8f@s\xff\x19\xa3\xc3\xdc\x92\xe63\\\xef\x16\x96\xb5\x00_j\xf5\x1c\x1b<\x989l47\xa1uE\x98-\xfb,\xc50\xaa\x9cC\xbf\xf0\x82\x9dd\xa4d\xe0*\xd6\xec\xd6\x1c0\x00\x06m\x93\xe9\xf9\x9cHi\xd7/\xe0\xdb\xee\xf3\x15\x81%\xb4a\xa7\x04\xd1\xb6n\xcf\xfc\x1f\xcf+\xc9N\xfe\x9c \xd0\x04\xd5\x99\xe9\xca\xae\x1e\xaa\xf2JBz~\x99G\rt\x0f\x96\xde\xf1*\x8aM\x19p\xd9H\xca(n\xd6\xd6\x908\xa8\x89\x94A-\x10\x1c-f\xec\xe1\x98*h\xcf\xf7H\xdb\xbf8\x80P\xcdD\xcf\xa2\xfa):\xca\x8cgv\x880\xa4\x84\xe4\x9c\xc3\x0b\xf81e\xce\xe0\xb8\xf5\xc5F\xca/\x8aGD\x11\xbb\xcc\x16\xdc\x03\xa0N\x85\xf3\xe7\x0e\x16r\xb9\x98RR\x03\xa4\xf6\xd1g$\x9a\x81\x95\xeb]\x008\xd8\xce\rM.\x9e\x87p\x8eX\x16}@(|\xac\xdc\xd5\x12i\x83\xce\xe9\x19\x81\xbf\xa5\x89\xf5\xe7\x87x^;y\x90\xde7\xaf\xc5@@j>\xed\xd0\xaf\xa7$\xa0s\xab\xe7\xe1\xeb\xa6]\xe4!\xf3#\x15\xf6\x0e\x84$\xc1\x90B\xb6\x91\xe2\xb8\xa0l8\xc0u\xaeU\xa9\xd9JGT\x1b\xf11\x9c\x13-_~xe\xb8gZ\x8bl%\xb4\x1ap\x15\x98\x9c\xfccxE\x87\x7f4\xd6\xb3\'\x9dE\xd8\x7fd\xb4\xe05$\xd8\xce\xf0S\x9fH\xa3\x83\x8d\x96\xa0\x9b\x91\xd2D\xfc\t;\x91\xba\xe0s\x8f\x97`2)?\'\xbf\xeef\t<n\xe2\xed4\x1c\xdc\xd8.\x9f\x94\xf98\xff\x0c<YO[\xcaq\xb8\xea\xca\xefa-\x91dyN\x02\xf0\xb0\xef|s\x88\xe1\xde\xda\x92\xeb\xb14(d+\xf6\xec\x02\x07\xcc(\xa61\x8b\xc47\xa6\xb6\x8d\xe5\xb0\xf0\xb9\x88_n]\xe1y\x07\xef\xee\xa3\x8f\x85\n\xe3W\xcd\x0f\x00F\xcam\xb3\x05m\xb4\xc8nD\xd5.:M\xcbE\xec\x11+\xfe,\xe0\x82\xacN\xd2\x18\x93W\xb9]V\x05\xa9\xa3\x91$\x1e,\xbe\xe4\xc0\x81g\xc0\xc7L\\Y\x96\xb6\xa2v\xfe\xee\xabof\xadcJ\xf1\xbd\xb2\xdf\x1a\xc8_D\xd9R\x1f\xdem\xa1\xa4|\\\x1b\xf2\x0e\x9f{r\x15\xf4\x1a\xcex\xf1\xc2\\\xe8#7\xab\xeb\x8f\x9d\xf7\xf1!\xc2\x9f\xf7\x02\xd4\xbc5\xb7\xc8]r\xcdM\x15bh\xacB\x81l20\xc8*e\xa0$\xd7\xfc\xf7\x8e\x0e\rg,\x90\x86\xcf\xb1\x10\xcb\x06e\xc4\xaa\x7f\xdd\xc3w\xc7Dz\x1c\xaf6=\xebS5\x96#xc\x05\xa9\x072bx\x11\xd6k\x17\x0cC]\xb9\r\xdflNlR\x1aE#\xe1\xfa\xf9\r-\xe3^y\x9b\x10l\x87\xfa\xca"\x1c7K\xb5\xd0\xc0\x0e\x06\x83\x04\x04,|\x80\x18A*\x13*C\xfe\xc9\'sg\xbe\x99\xe3\x85\x90#T\x04KrU\xb1of\x87s<\xc7\xe7B`\xed=\xb96\xeb32\xa5\xff\xef\xb4\xb3\xfb\xd5t\x987G\xf5\xf4\x05"Z\x9az\xdc\x80lX\xa9\x1d\x99\x93\x18L\x94\xeb\x0f\xd4\\I2\x86q\x18L\x91\\\x96q\x95o\xccn\xee\x07K9O\xf5\x87\x92\xdd\xaa\xd4@\xe1\xb2(\x97C\x90Y\xbet\xd4\xa1[\x96\xe8g\x11\x16-s\xd6\x92\xc4\x0c^R\x19mC\xe0}\xe9N\xdfzx4.\xa8\xfe\x01\x04V[E\xa5\xa4\x16^\xd1\xc8\xcb\xb4\x01d\x03\xdc.\x91X+\x13\xcf\x81\xab\x1c\xd8\x14\xe23\n\xa2\xcfo\x94>\xaa\x84V`\x8a\n\xf1\xc1\x8bP\x03U\xe3&c\x83\x9e\x88\xffIl\xe6\x9e\x14O\xac\xd6\xe6\\\x96\x0fd\xfca\xc5\x14\x89\x90\xe1!f\xe3\'Q\x94\xcb\xc2\xb7\xc9\xa0K}\xe8h5\x8e\x888\x96|D\xad\xca\xa3\xf9\x12\xac!\x959\x15\x86\x87\x9a68<\xe9\x0f\x03j\x9bh\xad\x08\xd3\x86g\xd06\xde\xcc\xe1\xa1\xb7\x9e\xa6\xe26&\xbb\xe6*\xf2U\xf9}\xd8\xceq<\xe6\xb3\xd52\x92\xc8\xdf\x94+k\xec\xac\x14AS\x0c\x84\x8eR\t\xe0\xbd@\x8amoX\xa2\x88[\xe9*')

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

	fake.sha1(raw_output=False)
	# '41da1349c8ae5c941212d22d97635397cbca6477'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '72dd0e362e6f66e9345c6252921197c23132824802e71ee95d91facfcf45d783'

	fake.uuid4()
	# 'f44eca2e-d9dc-ec92-3bb4-12dc94e5ec28'

	fake.language_code()
	# u'ru'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Kalvelis'

	fake.name_female()
	# u'Kajus Gai\u017eauskas'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Po\u0161ka, Vanesa'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Au\u0161ra Kairys'

	fake.first_name()
	# u'Aur\u0117ja'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Ineta'

	fake.first_name_female()
	# u'Med\u0117ja'

	fake.last_name_female()
	# u'\u017dukauskas'

	fake.last_name()
	# u'Ambrasas'

	fake.prefix_female()
	# u''

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

::

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

	fake.msisdn()
	# '7564776292355'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'016 Ernestas Spurs\nWest Simasburgh, DE 41479-3676',
	#     'birthdate': datetime.date(2007, 7, 22),
	#     'mail': u'jorispetrauskas@gmail.com',
	#     'name': u'Rokas Ginzburgas',
	#     'sex': 'F',
	#     'username': u'bgaldikas'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'09605 Naus\u0117da Harbor Apt. 661\nRitamouth, MO 81317',
	#     'birthdate': datetime.date(2004, 2, 11),
	#     'blood_group': '0-',
	#     'company': u'Pocius, Naujokas and Petrauskas',
	#     'current_location': (Decimal('25.632452'), Decimal('75.911224')),
	#     'job': 'Engineer, energy',
	#     'mail': u'danielius24@gmail.com',
	#     'name': u'Po\u0161ka, \u017dygimantas',
	#     'residence': u'68897 Gai\u010di\u016bnas Park Suite 630\nVaidaberg, AS 79613-8414',
	#     'sex': 'M',
	#     'ssn': u'497-99-7728',
	#     'username': u'ikavaliauskas',
	#     'website': [u'https://kalvenas.com/', u'http://nagys-jankauskas.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([5505, u'LDyHHIBuTqFeytCVPjTe', 8261, u'iiPLcGvMfbHNPVMUqZUx', datetime.datetime(2003, 11, 23, 23, 50, 20), u'AgkYRRxryTbXGOPmJppB', Decimal('-8538728.0'), datetime.datetime(1992, 4, 21, 1, 51, 27)])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'khpYtznbhHtCzNBCLgdp',
	#         Decimal('19339337517.6'),
	#         u'http://gaizauskas-ambrasas.com/search.php',
	#         1949,
	#         u'mjxpkVnYqCeNedbFeGCY',
	#         882705.2,
	#         Decimal('-34490526.45'),
	#         u'qakelis@nauseda-sakalauskas.com',
	#         Decimal('9.702'),
	#         Decimal('16.60465')],
	#     {   u'ab': u'TEbbqYgYmZzlNaxsynEO',
	#         u'commodi': u'ignasnarusis@yahoo.com',
	#         u'delectus': 2729,
	#         u'fugit': Decimal('8.93143626747E+12'),
	#         u'magnam': u'TDXSlIvxIOZxSJGUZRQB',
	#         u'maxime': 5462,
	#         u'nobis': u'cVYsjZIplKSvHnIwCTSn',
	#         u'quas': u'http://www.pocius.com/home/',
	#         u'sint': 1337,
	#         u'vel': u'xfMbxKPcBFKTSOysvtEI'},
	#     {   u'adipisci': {   2: 2287,
	#                          3: [u'zixzgoHpJVMTFXUtYFrI', -924487.42907806, 708],
	#                          4: {   2: 6141,
	#                                 3: u'TcXsjNCAnUQMAiWmWVBT',
	#                                 4: [   u'jfCxXaCSsjNZHEbEdSBR',
	#                                        u'dNfysDAUhbUKCgMehbPP']}},
	#         u'atque': {   8: 9863,
	#                       9: [   u'PTtxRpURANtyrGGmYBMo',
	#                              datetime.datetime(1973, 10, 6, 15, 33, 23),
	#                              7498],
	#                       10: {   8: 4787192307.4978,
	#                               9: 4222,
	#                               10: [6468, u'https://www.zukauskas.biz/']}},
	#         u'commodi': {   3: 5234,
	#                         4: [   4994,
	#                                u'LOcxNOmujEzrzmYokjEr',
	#                                datetime.datetime(1991, 6, 5, 21, 12, 52)],
	#                         5: {   3: u'dIRmesboPNpXoXIjJbEF',
	#                                4: u'kpetrauskas@kiska.com',
	#                                5: [   u'VJhKEBeLSnVNuoMqJRMA',
	#                                       u'FazuLbYlrrPmThjcEwil']}},
	#         u'exercitationem': {   7: u'https://www.gaizauskas.com/post/',
	#                                8: [   u'zbNNlnOFoNsSNAgCjmUI',
	#                                       u'SVKaDVmBnjmNsxLxVPms',
	#                                       u'aXPEbSsUGXYTGmWWhnMq'],
	#                                9: {   7: u'aKZstUhVpCAEkPtbaLnr',
	#                                       8: 9077,
	#                                       9: [4910, u'LSOakSFqNoJrJhVpUQrl']}},
	#         u'impedit': {   9: u'griniusvilte@kalvenas.com',
	#                         10: [u'wTqDAQOMIiBGvdiRPpoM', -3327665.9436, 6071],
	#                         11: {   9: -2953650920477.0,
	#                                 10: 7749,
	#                                 11: [   datetime.datetime(1981, 12, 5, 8, 40, 26),
	#                                         2146]}},
	#         u'magni': {   4: 3337968072913.0,
	#                       5: [   0.97417940384,
	#                              u'qXAXGLOjEpBvNXJuloNX',
	#                              u'VvAZcOmbjMlHOVRmoCBo'],
	#                       6: {   4: Decimal('232073454007'),
	#                              5: u'myacWMKSNdnxPjUaEmYM',
	#                              6: [   u'UJYvtIyBULGYOfTGTPRg',
	#                                     u'oudoQpvJxKyMoEpQJQLg']}},
	#         u'sequi': {   6: u'dXpZxoJtcvSsgjsHuqgR',
	#                       7: [   u'cvMYAZuWJUsdMldpplDM',
	#                              3284,
	#                              u'ZdTPxxbseBeiMdUcPhnm'],
	#                       8: {   6: u'RYRajrqSqsPlDMACvSRC',
	#                              7: u'krYyNnqLHxCEnvrkBiDV',
	#                              8: [   u'jonas91@hotmail.com',
	#                                     u'byUGGYENYilGysgZwQVR']}},
	#         u'soluta': {   5: datetime.datetime(1979, 7, 14, 10, 33, 34),
	#                        6: [   u'lginzburgas@hotmail.com',
	#                               u'XzzCJLikTnYalyWdIIeJ',
	#                               u'sRFIauZqDRCyNmZiwCNQ'],
	#                        7: {   5: 1281,
	#                               6: u'ccvDCgYeKEjqKrOUYWxF',
	#                               7: [   u'http://www.urbonas.com/index/',
	#                                      u'boVWxfkyLiTtumuXOVGZ']}},
	#         u'veniam': {   1: -58277275.92894,
	#                        2: [   u'sZeZcTyMpKMjswxSPYWo',
	#                               -73690090.44585,
	#                               u'hgailius@gmail.com'],
	#                        3: {   1: u'DzonNlOdYrxtKudgDKvP',
	#                               2: u'https://www.nagys.com/',
	#                               3: [   u'http://zukauskas-petrauskas.com/about.htm',
	#                                      Decimal('3020848357.4')]}},
	#         u'vero': {   0: u'https://gailys-paulauskas.com/',
	#                      1: [   u'SIlcdJhGMuTsllcwlgwn',
	#                             Decimal('-650.188'),
	#                             u'https://www.vsiliauskas.com/search.htm'],
	#                      2: {   0: Decimal('-7.49263521402'),
	#                             1: 4360,
	#                             2: [   u'xgPONLNyBjBMHBcARvEl',
	#                                    Decimal('-5870180.5')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   3536,
	#     Decimal('606793.323377'),
	#     u'qehLCeUKMyJRfLteyxqc',
	#     2626,
	#     u'kMdgcsRGCxnzBCpxwvjG',
	#     Decimal('-5.2821398886'),
	#     7923]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'umrSQQJlYDipfFeeLnAh',
	#     u'zukauskasmantas@hotmail.com',
	#     4803,
	#     u'BBuJAUdhUVSgPkwIyAVw',
	#     1382,
	#     u'XycCUfeookeukjbcrBpQ',
	#     66305026125.0,
	#     7728,
	#     Decimal('38285338.5298'),
	#     u'QDCRPdyToSZCwveAfHKs',
	#     u'https://www.butkus.net/',
	#     datetime.datetime(2012, 12, 30, 2, 7, 38),
	#     u'https://www.ambrasas-kazlauskas.com/')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'gBCsvnDZKdFeNmTSOPKD', u'CZYxUAcsXIhNFKiWMLCV', u'ttkqppkGfAseEydAjcyJ', u'LDfUGGAJqQLBQydQeoVm', u'DfqNXyjZJALIewVYYWGz', u'hLgvhmbYvLAYWDDNwZTP', datetime.datetime(1970, 9, 1, 2, 36, 54)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'consequatur': Decimal('-512941.599'),
	#     u'delectus': u'iPHqjxuVSSbEHTbFdpyy',
	#     u'dignissimos': u'CwTpFXHbosnznjUkbJmY',
	#     u'eligendi': -62135709687.993,
	#     u'explicabo': u'https://www.grinius.com/blog/register/',
	#     u'inventore': u'OAvBfIdFJQBDMNZOYTTt',
	#     u'nihil': u'http://butkus.biz/posts/explore/main.asp',
	#     u'quasi': u'WGZsxTKmVTPtEpIjVIPr',
	#     u'sunt': 3890}

	fake.pyint()
	# 2543

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'216-55-6587'

	fake.ein()
	# u'12-5451248'

	fake.itin()
	# u'991-76-2101'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2; rv:1.9.6.20) Gecko/2012-12-17 00:20:46 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.10.(X11; Linux x86_64; hr-HR) Presto/2.9.171 Version/12.00'

	fake.windows_platform_token()
	# u'Windows 98'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; fil-PH; rv:1.9.2.20) Gecko/2012-05-23 16:39:47 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 (Macintosh; PPC Mac OS X 10_9_0) AppleWebKit/5312 (KHTML, like Gecko) Chrome/46.0.849.0 Safari/5312'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6 rv:2.0; gu-IN) AppleWebKit/531.22.4 (KHTML, like Gecko) Version/5.0.2 Safari/531.22.4'
