
Language sk_SK
===============

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

::

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

	fake.street_name()
	# u'Tranovsk\xe9ho'

	fake.address()
	# u'Kr\xed\u017ena 7199\n398 58 Bystr\xe9'

	fake.street_address()
	# u'Zlatohorsk\xe1 64'

	fake.postcode()
	# u'158 05'

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

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

	fake.country()
	# u'Bosna a Hercegovina'

	fake.city_name()
	# u'Kravany'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'2/7'

	fake.street_suffix_long()
	# u'ulica'

	fake.street_suffix_short()
	# u'ul.'

	fake.city()
	# u'Kobylnice'

	fake.state()
	# u'Nitriansky kraj'

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

::

	fake.license_plate()
	# u'A16-33G'

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

::

	fake.bban()
	# 'QKNN8637049913950'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB98EPOC4163124232917'

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

::

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

	fake.ean13()
	# u'6928853382828'

	fake.ean8()
	# u'60867308'

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

::

	fake.rgb_css_color()
	# u'rgb(223,51,246)'

	fake.color_name()
	# u'PeachPuff'

	fake.rgb_color()
	# u'144,81,137'

	fake.safe_hex_color()
	# u'#ccdd00'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#c5cd98'

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

::

	fake.company()
	# u'Patrick k.s.'

	fake.company_suffix()
	# u's.r.o.'

	fake.catch_phrase()
	# u'Streamlined transitional array'

	fake.bs()
	# u'enhance plug-and-play e-services'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nAnna Smith\n4963027244524161 09/22\nCVC: 083\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'KOI'

	fake.currency_code()
	# 'ALL'

	fake.currency_name()
	# 'New Zealand dollar'

	fake.cryptocurrency_name()
	# 'Namecoin'

	fake.cryptocurrency()
	# ('UBQ', 'Ubiq')

	fake.currency()
	# ('SDG', 'Sudanese pound')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 3, 21, 36, 16)

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

	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(1999, 7, 23, 15, 39, 23)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2012, 8, 25)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 12, 11, 22, 37)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 9, 25, 10, 54, 33)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2001, 2, 7, 17, 25, 36)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1977-09-18'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1984, 11, 23)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2001-07-04T18:53:55'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2001, 12, 27)

	fake.month()
	# '10'

	fake.year()
	# '1998'

	fake.day_of_month()
	# '20'

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

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

	fake.century()
	# u'XV'

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

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 1, 30, 6, 19, 12)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1995, 4, 27, 13, 53, 31)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '12:49:52'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 3, 15, 48, 6)

	fake.month_name()
	# 'April'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1596, 9, 18, 8, 27, 23)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(11954, 2413)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/est/ullam.tiff'

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

	fake.file_name(category=None, extension=None)
	# u'id.ods'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'csantana@szm.sk'

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

	fake.tld()
	# u'sk'

	fake.email(*args, **kwargs)
	# u'karinathomas@azet.sk'

	fake.url(schemes=None)
	# u'http://www.jordan.sk/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'author'

	fake.free_email_domain(*args, **kwargs)
	# u'azet.sk'

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

	fake.ascii_email(*args, **kwargs)
	# 'afowler@azet.sk'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'christinemarshall@hampton.sk'

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

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

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

	fake.slug(*args, **kwargs)
	# u'corrupti-facere'

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

	fake.company_email(*args, **kwargs)
	# u'mreese@ballard.sk'

	fake.uri()
	# u'http://whitney.sk/category/about/'

	fake.ipv6(network=False)
	# '6417:68f9:3c9c:3f78:b397:2e66:946:ac14'

	fake.free_email(*args, **kwargs)
	# u'hartmanvalerie@zoznam.sk'

	fake.ascii_safe_email(*args, **kwargs)
	# 'trollins@example.com'

	fake.mac_address()
	# u'5c:e3:66:71:76:87'

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

::

	fake.isbn10(separator="-")
	# u'0-286-01908-6'

	fake.isbn13(separator="-")
	# u'978-1-5056-8866-5'

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

::

	fake.job()
	# 'Art gallery manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Asperiores magni labore inventore. Voluptatibus inventore amet excepturi fugiat. Pariatur aut quisquam placeat ab error laudantium.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Distinctio atque inventore in et. Porro sit dolor unde rem inventore. Sint fugit assumenda autem temporibus velit odit.',
	#     u'Sunt facere natus. Quisquam commodi ratione corporis recusandae consequuntur facilis minima. Porro corrupti reiciendis repellat corporis. Quo harum fuga possimus quaerat a laboriosam.',
	#     u'Repudiandae officiis explicabo animi optio neque soluta ducimus.']

	fake.words(nb=3, ext_word_list=None)
	# [u'laudantium', u'nulla', u'provident']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Labore ab tempora repellendus.',
	#     u'Eum blanditiis ullam a distinctio blanditiis rem.',
	#     u'Necessitatibus dolore qui quod explicabo quae.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Sequi tempore facere et nostrum molestias. Iure similique cupiditate temporibus voluptatum provident. Dolor expedita porro quibusdam aliquid.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Doloremque fugit molestias perferendis molestiae.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'tk)$8B_erN'

	fake.locale()
	# u'uz_UZ'

	fake.binary(length=1048576)
	# bytearray(b'\xc8\xfeO.H\xd7\xdcx\x03$^\xef\xa4\xf00{\x98\xb6$\x82\xb7b\x0f\x1f\x8c\xcd\xd8\xa8\x83x/\x04="i\xab\x9f\xb1?\x0c\x82@l\xf4\xd0\xc5\x9a\xd9\xe5\xea\xf5\xe3^\x18\x92i\xe8\xf7\x126\xa7\x91\x96\xb8\xf7\xea\xbb\xcf\xd1\xb5[cf=\x88|\x00\xd1\xd9\xb0\xd1\x17\x86\x87\x9a\xf4!\xba\xd7`_/;\xef.\xec\r\x0bS\xa0\xfb\x99GTF@6G\xf2h[R\xaa\xda\xef\xa2+h\xf3\xa7\xea9\x15|u.\xe4\x1c\x06\xa5$\xe8x\x88G\xea\x13\xc8\x1a\x82Vy\xd14\xc0\t\xeaE\xe3\xc0\xc2K\x00\xf6\xae(\x7f\xe2z\xf6\x0cA\xee\xd5x!U\\[\x14\x81^\x98\n\x8cv\xb4\xbe\x85u\xc6\xe3\xaa\x8b!\x08\xd5\x01\xe4\xfe\xffdJ\x8b\xf4\x88\x04\x1e\xeaeN\x9d4=\x04^/YNA\x81\xd6~\x8b\x84\x1d\xa93y\xa8\xfbE\x81Y6\x08\x06\xeen\x8bg\xadm\x11\x10(\xc0\x9c|\x02\xc1\xe9\x16\x9f\xebV\x9dDHA\xcc\xc2\xc3s\x97\xe8v\xbf\xe3\x83\x08$J\x0f\xa5\x06\x02\x0c*\xfd\xb7F@3L\x80\xb1\x18\xa9\xae\x9fF\xe9\xc5\x96Z\xbe\x03\xf1T\xc72^\xd0H\x83\\Kd\xe7x\xc8\xf5\xe3D\xb2\x02\xcb\xf4\xbaJ\xc2\x10M\x18Fw\xec\xfc\xcb\x0b\x11\xcc\xda\x8b\xcb\x07\xb7mQ\xdcg\x00\xff\x0b)\x88\x1a\xb4\x00d\xbe:l(\xcc\\\xa3\xae1W\xd6Vm\xdfo\x8b\xa5\xa0E}\x91\xbf\xf9\xf2\x0cV/&B\xf8\xb0\xcc\xd94\xf5\x17\x11\x91\x148%WT\x91]<Ua\xf1\xe0l\xb6\x95\xc0\xaf(;\xf9\x01\xdc\x99\xf1\x9f\xa8F\x94\xf0\xcf\xd0p\x98[\xf6\xb4\xe3\xab\xa5\x9e\x97\xd6>Uf\xd2\xe4\xbd\x81\xf0\xf2\xba\x1d\x12]\xb1\xde\x96\x17pJ`\xf5\xf3_\xde\x90\x9d\xb9Y\xaf\x1a\xacz\xab\xd6\xfd\xa1\x84\xff\x9ack\xc3@\xe4\xeac\xfbL\xfa\x0e\xd9,\x84\xfb\xf8\x1dHP\xdel7\x03\xbd\x01\x1c\x0f\xe2+g\xc9\xfc\xa8\xd8jh\x0e\x9c\x83\x85\x07\x17\x88\x07\xf7(I\xd9e&d\x0cha\xe9\xf6T\xb9\xb9\xb9\xb4\xbe^9\xd1\xec\x8c\xcf\xbc8\x1a\xc5H\n\r\xb8\x88`"TJP\xde\x9bdW\x91/\x8b\x99q\xdf\x1bQ1\x15g&Sc\xe3\x00\xa7\xab\xe5\xf7\x16e\xec:\x86*XR\x11VAC\xb9\xa1\x16\n\xb6\xef\xf9\x8f\xd0\x0eR\xff\x03\x9e\xb7\x84\x7f\xf9\x80\xba\x86\xeea$\xca\xc0\x08\x82\xe8T`?j\xdc\xd9\xf8\x025\x9f\xd5\xbe\x10Ob2\x81\x01\xd3\x1f\x86\xf5\xcb\x97\x00\x87\x88\x95\x00F\xa3V\xf9\x16\x18\xe4)*:R\x00~@\x96c\xb5\x04{\xb7Y\xba\xe9\x0eS%5\xb9\x0eqO\xf3G\x7f\x96\xc9\xcf.\x12\x0c\xea]\xd6\xb3A%\xd30;S\xa0\xfc\xe7\xfdq\x88\xed\x99a\xf4.K\xedN\x9d\xec\x02\x04T\xc5!\xfcvc\xd6tt\xff\x87O\xa7\xfe\x1e\x95c\xbf\x7fb_\xf1\x19\x1a!\xb4\xa4\x1a\x08\x9cE\xb9\xe1\xba8\xc2\xf0Pu\xb12\x97\xeb\x85\xfej\x8e\x98D\x80\xc4\xa5\xfdB+\xe9\x02J\xa7\xad\xb1,sP\xfd\xd9\xca\x7f\x7ft\x1dG,;\xfc\xad\x8fL\xfe~\xe4\xa6\x9d\x7f\x01@\xcc\xb9\x92\xd3\xbf\xec|bK\x9d\x8e\xc1\x88\xc5!\x99l\xc0\xa1\xa5c\x9f\x06\x00;=\xb8\x88\xba\xe6\xa1w\xbd\x85\xfa\x92MhP\x8cO!3\xfaeC\xd5\xd3g\xda\xcaZ\x89\'\xda\x03\xefo\x10[\x8c\x07\xca\x01\nq\xec\xeb[X9\x1c\x9d\xaf*\xa8\xbf\x05^ \x0c\x14\xe0P\xdf\xde\x0f\xbeF\xbd\xc0\xab3\xc7\x15\xa1\x0f\r\x9e\xb1Y\xf1\x96\x8e~z\xb2\xde\xa1\x905K\xe1C\x00\x08\xac\x95s\x96\xb4\x9d\xe4\x94\x91\x18\xaf\\\x7f\xfe\xf7\xcc\xa3\xe9:TUxT8\xee+\xc2\n\xa6%\xe6c\x10\t\x15\x11\x12W\x01d\xcd=gw\'\x0b\xce\xa3\x15\x1e\x95\x02\x1a\x18_8\xa2\x11V\xbc.\x19\x04h(\xc9(\xf0%\xf6\x1d\x13\xa3?\xc0\xc9\x8b\xb3\x07\x8e\xe7.zks_\x9d"\xbeh\x0c\xcd\x959=\xcb2\x07\x8a7&\x10\x01\'B:\x05\x10\x06\x1a*\xff\xbb\xe4~\x8a\x8d\x02')

	fake.md5(raw_output=False)
	# '781e0b401e6755fad7a4ac8a7f5453cd'

	fake.sha1(raw_output=False)
	# 'bedeb49f064ec484fe0448cb5960a1b1d376bc2e'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '5f85b91494dd1b3d9887efae7fe40796e5b5ff4baec8dbe271b1cc73ecee9167'

	fake.uuid4()
	# '3318146d-b50e-5c4c-42c7-25ea70b62564'

	fake.language_code()
	# u'ps'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Schneider'

	fake.name_female()
	# u'Mary Graham'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Kevin Smith'

	fake.suffix_female()
	# u'DDS'

	fake.name_male()
	# u'Erik Hendricks'

	fake.first_name()
	# u'Matthew'

	fake.suffix_male()
	# u'MD'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Peter'

	fake.first_name_female()
	# u'Susan'

	fake.last_name_female()
	# u'Reyes'

	fake.last_name()
	# u'Wilson'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'+421 948 131 836'

	fake.msisdn()
	# '0344563321251'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Kr\xedkov\xe1 5\n127 53 Marku\u0161ovce',
	#     'birthdate': datetime.date(1976, 11, 27),
	#     'mail': u'esmith@inmail.sk',
	#     'name': u'Lisa Lopez',
	#     'sex': 'F',
	#     'username': u'sweeneymelissa'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Ihriskov\xe1 08\n919 44 Ba\u0161ka',
	#     'birthdate': datetime.date(1938, 5, 23),
	#     'blood_group': 'B+',
	#     'company': u'Taylor Lee k.s.',
	#     'current_location': (Decimal('85.472190'), Decimal('-85.024535')),
	#     'job': 'Curator',
	#     'mail': u'sduncan@azet.sk',
	#     'name': u'Robert Tate',
	#     'residence': u'\u017dellova 2\n402 94 So\u013eni\u010dka',
	#     'sex': 'M',
	#     'ssn': u'615-92-8956',
	#     'username': u'sandra64',
	#     'website': [u'https://www.lawrence.sk/', u'http://www.morgan.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   4672,
	#     30237885531.611,
	#     2252,
	#     u'hessjoshua@pobox.sk',
	#     datetime.datetime(1993, 8, 16, 9, 12, 42),
	#     u'hlqrmgdlJNBhRXLZWCjs',
	#     u'qTFeLgHolGjqCbnunBzo',
	#     -80741078963649.0)

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('8355980535.7'),
	#         u'IJqMTSJyPzcDdlcAnnMB',
	#         u'parrishkari@post.sk',
	#         214625648.574458,
	#         u'piGWWqovCWlScZSSAoro',
	#         Decimal('-439030541486'),
	#         1933,
	#         9405,
	#         datetime.datetime(1990, 9, 20, 1, 48, 12),
	#         2137],
	#     {   u'aliquid': u'https://nelson.com/category.htm',
	#         u'architecto': u'https://www.daniels.sk/app/list/category.asp',
	#         u'earum': Decimal('-425532.137658'),
	#         u'esse': u'aDIcPbseOBZBLKhrLEQt',
	#         u'laudantium': u'snydercory@atlas.sk',
	#         u'perferendis': u'IztqdnUTRzOIpXpYAeYG',
	#         u'possimus': -186111.508223,
	#         u'ratione': -2518.84,
	#         u'voluptatum': u'zhJXUmidSQKTPSUZPHLN'},
	#     {   u'aspernatur': {   7: u'iuksLFEpeMAYtIoPyKpO',
	#                            8: [   u'TwZKOCfxYCzDOkTmoZrJ',
	#                                   Decimal('-473.806756143'),
	#                                   datetime.datetime(1979, 12, 8, 11, 5, 58)],
	#                            9: {   7: 9002784.447,
	#                                   8: u'christina30@zoznam.sk',
	#                                   9: [   u'ibodUOtuhxQatyJGbkrD',
	#                                          u'VxDTOKZfjfwJAVoMnXVk']}},
	#         u'atque': {   8: datetime.datetime(1977, 10, 15, 0, 58, 15),
	#                       9: [Decimal('-59.0'), 4130, Decimal('-29773394182.4')],
	#                       10: {   8: u'wmacdonald@chello.sk',
	#                               9: u'odJLVNBkyYVSmjGdDGDo',
	#                               10: [519711395129.0, 4783]}},
	#         u'cum': {   2: 10666740.9,
	#                     3: [   u'jonathanmaldonado@centrum.sk',
	#                            u'nPELtIsVxvSjMBIimkLQ',
	#                            u'iLDESarOzZGjdQjCAiDA'],
	#                     4: {   2: u'https://www.burns.com/register/',
	#                            3: u'kYOrZxwMzOqAAUhnJicd',
	#                            4: [   u'DioBOSspyyyQrEhTRYEG',
	#                                   datetime.datetime(2005, 7, 12, 16, 59, 36)]}},
	#         u'est': {   4: 6359,
	#                     5: [4598300342.1, u'vHFlRshlsdoizszbmaNF', 9423],
	#                     6: {   4: datetime.datetime(1993, 8, 19, 2, 3, 26),
	#                            5: 8499,
	#                            6: [   datetime.datetime(2010, 5, 17, 14, 10, 33),
	#                                   u'JgMohueOYorDcOhCUybd']}},
	#         u'facere': {   6: u'https://www.santos.com/terms.html',
	#                        7: [   u'MzlVDRNLRHEELNXldtGw',
	#                               u'aDqlrFXaokOcenNuTqqY',
	#                               Decimal('814573421.627')],
	#                        8: {   6: 7100,
	#                               7: datetime.datetime(2001, 8, 25, 0, 49, 41),
	#                               8: [   datetime.datetime(1995, 9, 19, 11, 44, 15),
	#                                      datetime.datetime(2011, 1, 30, 15, 19, 39)]}},
	#         u'iusto': {   3: 199125051970.3,
	#                       4: [   u'QmeIVnYvVLxswmmubfQf',
	#                              u'OxaTbNrTgKJcIfirAPyB',
	#                              u'WYpkeZOZldeRBsnIHfpI'],
	#                       5: {   3: 4236, 4: 59.8875762, 5: [5889, 122]}},
	#         u'maiores': {   9: Decimal('-6.21400593196E+14'),
	#                         10: [u'xYxHpEkSntTEQDkdnQBP', 4831, 8458],
	#                         11: {   9: u'MrBAhEDrrvfjwnpxSrrG',
	#                                 10: 80.888045,
	#                                 11: [   u'vfTywvCEWYeSLHpQNbVr',
	#                                         u'EVUCbdEYjYubVUFIGcss']}},
	#         u'nam': {   1: 7442,
	#                     2: [   u'vfbAHpmATGAYSCtTHqhG',
	#                            u'gbstNeuylvosOQGDshTk',
	#                            u'wfiOQgyfjhEoewiyxnox'],
	#                     3: {   1: u'SnovBFkSYDjqkfLOkfGQ',
	#                            2: u'DcdQMAVGaRlBDTJwGKiL',
	#                            3: [5279, 1236]}},
	#         u'officiis': {   5: u'vwkIsDNmEyxydwbuEHlN',
	#                          6: [u'bCwEhRpYDUpLKdberpRH', 4241, 4518],
	#                          7: {   5: u'xgGIuZrwcUKGCxoOzCms',
	#                                 6: -71822.83,
	#                                 7: [u'http://stokes.sk/', 7976]}},
	#         u'sed': {   0: u'https://www.cook.com/search/',
	#                     1: [   u'SukENpPFjYiZWLCAwEIo',
	#                            u'EVNBKIpEuesyflWptRBw',
	#                            u'UrACGNldBivDWqYIAfdr'],
	#                     2: {   0: 36525676622.1673,
	#                            1: u'SwTeYXqQSfGPajUOXqea',
	#                            2: [   22295417017988.0,
	#                                   u'https://www.mccarty.com/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('8617157390.6'),
	#     datetime.datetime(1998, 3, 14, 16, 40, 16),
	#     3440,
	#     4812,
	#     u'ZrpraPkafVzfZyhCWtsN',
	#     u'IPRFERlBhePyjwWbBwzK',
	#     u'hOjxgNbcldnxSpGsbaiL',
	#     u'jonowens@gmail.com',
	#     u'AvnxSItpIqpcrBLSmefB',
	#     Decimal('-3011815.8813'),
	#     u'YikAaRXdYEKEYNBxnQIT',
	#     2316]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'VsWVSEKItDcWqRdRzFpy',
	#     datetime.datetime(1996, 8, 12, 13, 55, 24),
	#     -7642723228019.3,
	#     740314388.7,
	#     u'michael46@azet.sk',
	#     u'https://www.hunter.sk/about.html',
	#     2609,
	#     u'xkKnjsKmXRvrfymsGEiu',
	#     u'ZnuftUfWeMQIPZKVaVez',
	#     u'ctlAVKGFoywCjtqLVXDk')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'EwCHMIXXzUwamsHlbhZG', u'AXCBckqWcIUVpGWmwANo', u'http://morrison.sk/tags/category/privacy/', u'kNwFgLxsREqUVZLvghry', datetime.datetime(2013, 10, 15, 3, 31, 27), u'ALYlgaNKWrSiDAZLHBtd', u'muekhmzqsAolQqCzFUsC', Decimal('46627211617.4'), 9983])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'animi': 1566,
	#     u'facere': u'ghoward@azet.sk',
	#     u'facilis': u'whitneypaul@pobox.sk',
	#     u'possimus': u'BVjgdrcfFmoZZexiXMql',
	#     u'totam': u'AzykIihYixkUViGKMhFz',
	#     u'unde': u'bwilliams@szm.sk',
	#     u'veniam': u'https://www.foster.com/list/tags/app/main/'}

	fake.pyint()
	# 9718

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'896-38-1561'

	fake.ein()
	# u'75-0987847'

	fake.itin()
	# u'963-91-9778'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_4; rv:1.9.5.20) Gecko/2019-03-27 16:36:03 Firefox/9.0'

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

	fake.opera()
	# u'Opera/9.58.(Windows NT 5.0; ce-RU) Presto/2.9.176 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.1)'

	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 4.0) AppleWebKit/5312 (KHTML, like Gecko) Chrome/15.0.844.0 Safari/5312'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_1 rv:5.0; ht-HT) AppleWebKit/532.41.7 (KHTML, like Gecko) Version/5.0 Safari/532.41.7'
