
Language pl_PL
===============

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

::

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

	fake.street_name()
	# u'Wczasowa'

	fake.address()
	# u'pl. Cegielniana 453\n51-180 Tarnobrzeg'

	fake.street_address()
	# u'al. Lipowa 082'

	fake.postcode()
	# u'75-045'

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

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

	fake.country()
	# u'Latvia'

	fake.street_prefix()
	# u'ulica'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'43/89'

	fake.region()
	# u'\u015al\u0105skie'

	fake.city()
	# u'Zgorzelec'

	fake.street_prefix_short()
	# u'al.'

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

::

	fake.license_plate()
	# u'YZ-8456'

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

::

	fake.bban()
	# 'VFTV1505776699804'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB33TDFD1820568295271'

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

::

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

	fake.ean13()
	# u'1539605959073'

	fake.ean8()
	# u'07741449'

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

::

	fake.rgb_css_color()
	# u'rgb(143,17,97)'

	fake.color_name()
	# u'IndianRed'

	fake.rgb_color()
	# u'187,207,19'

	fake.safe_hex_color()
	# u'#bb5500'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#fc434c'

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

::

	fake.local_regon()
	# '53034686389784'

	fake.company()
	# u'Gniewek, Grzegorzak and \u0141uszczak'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Inverse intangible strategy'

	fake.company_vat()
	# '3820269056'

	fake.bs()
	# u'benchmark collaborative networks'

	fake.regon()
	# '399777989'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nAdam Czajor\n213141800395597 01/24\nCVC: 268\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'STC'

	fake.currency_code()
	# 'SHP'

	fake.currency_name()
	# 'Sri Lankan rupee'

	fake.cryptocurrency_name()
	# 'Emercoin'

	fake.cryptocurrency()
	# ('STC', 'SwiftCoin')

	fake.currency()
	# ('LAK', 'Lao kip')

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

::

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

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

	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(2004, 3, 10, 3, 20, 30)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2018, 3, 27)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 13, 5, 38, 51)

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

	fake.day_of_week()
	# u'sobota'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 11, 12, 7, 53, 34)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2006, 8, 29)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 4, 30, 2, 53, 39)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2005-12-25'

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1976, 4, 24)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1977-03-12T06:10:01'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2016, 9, 10)

	fake.month()
	# '02'

	fake.year()
	# '1977'

	fake.day_of_month()
	# '06'

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

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

	fake.century()
	# u'XVII'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1950, 1, 24)

	fake.time_object(end_datetime=None)
	# datetime.time(7, 9, 24)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 28, 12, 0, 21)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1987, 9, 20, 15, 55, 4)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 2, 6, 5, 5)

	fake.month_name()
	# u'lipiec'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(625, 4, 16, 10, 40, 8)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(5897, 31714)

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

::

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

	fake.mime_type(category=None)
	# u'message/rfc822'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/esse/cupiditate.pptx'

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

	fake.file_name(category=None, extension=None)
	# u'animi.csv'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'olga74@interia.pl'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'majtykasonia@josko.com'

	fake.url(schemes=None)
	# u'http://baumgart.org/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'terms'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'idapikula@gmail.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'traba@sieg.com'

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

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

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

	fake.slug(*args, **kwargs)
	# u'accusamus-soluta-id'

	fake.uri_path(deep=None)
	# u'blog/categories/search'

	fake.company_email(*args, **kwargs)
	# u'ksawerysiciarz@sporysz-piersa.net'

	fake.uri()
	# u'https://maksimowicz-wesola.pl/search/main/'

	fake.ipv6(network=False)
	# '816b:3085:4e4b:6741:e661:dd25:eb0e:1008'

	fake.free_email(*args, **kwargs)
	# u'nicolebazela@onet.pl'

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

	fake.mac_address()
	# u'55:55:21:b5:32:0a'

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

::

	fake.isbn10(separator="-")
	# u'1-82567-840-5'

	fake.isbn13(separator="-")
	# u'978-1-71573-260-8'

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

::

	fake.job()
	# u'Artysta-rezydent'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Beatae dolores in optio qui maxime cupiditate nulla. Corporis ullam harum iure velit consequuntur quasi.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Eligendi harum nulla quia optio fugit facere. Quod voluptatem hic vero. Culpa quos praesentium nihil ratione ipsum.',
	#     u'Dolor voluptas vero distinctio voluptatem.',
	#     u'Quos culpa quibusdam. Nemo earum dolorem magni.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Labore similique aperiam quisquam quidem.',
	#     u'Ipsum ut doloremque dolores.',
	#     u'Pariatur dolores beatae dolorem ducimus autem inventore.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Veritatis ad excepturi nobis quaerat. Eius porro tenetur minima mollitia. Ullam aliquam fuga rem quae.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Distinctio beatae iusto consequuntur.'

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

::

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

	fake.locale()
	# u'bem_ZM'

	fake.binary(length=1048576)
	# bytearray(b'\xd9\xcd\x8f\xb4\x8f\x1f4\x8a`N\xc5\xc6,\xe7U\xfb\x87\xba\xa8b\xeb\x88?\x8eH\x8a\xa5\x0bp\xd3\xe0\xc4T\xa5l\xa86\xd7\xb2\x11k\xc3\xee\x97\xdek\x8d\xa2_c7\xc7i\xbc $\x04i\x8e\x0e\xb7\x15r\x85n\x07^\xe2\x9a\x9b\x06\xf2\xf3\xb0\x1ea\xc6OJ*\x84\xd7\xc5QW\xfe\x12*L\x00\x1d\xf2{\xe6\xfd{t=[Y\x88s\xc6\x07\x02\xf8\xc9\x85\xed\x81e\x8bt\x1d\xf77?\xc6Zt\xf9\xad\xdf\x1d\xc0\x1d0\xcc$\x0f\xc75:/\xdf\xc66\x84\xa5+\x89\x81\xe0\xf2aw\x12\xf8\xdd\xae/\xc1\xd8\x8d\x1b\x8da\xe1\x89\x9a\x8cX\x97\xe1\xffm\xd1\xf0\x99\x05\xa7\xe7\xa4uf@\x8e\xe2\xd8:\x9f&RSv\xda\xb2\xae\xe7\x95l\xc4\xd5B\x8d5\x0f\xe2H\xba\xe1\xd1Y\x15\x01\xdd\x08\x83\xe4\xee\xa9X~\xcb\xa4\xc0\xe9=\xf4=\x1d\x84\xf9o\x89\xfcH\xa3\xdaW\x89\x88\xe7\x8a\x9c\xa0yE\xadq\x05\x89W\xafPz\xd6u^\x9d\x1b\xfdUn\x128\x98\xc48\xb0\x1f\x16big\x08\x1a3\xa21\xba\x19J%\x8e[E\xa2=\x1c,\xb9|a6\xabw\xc2\x1f\x14L\xba\xa0_W\xb0f\x07\xe2\x9b\xc3\xff]pa\xc5\xf1\x89\x8f\x12\xbe\xad\xb1 \xe4P1\xa4`C\x01$\x9ft\xe9\xad=\xac\x9f\xfe\xa0j/!)\xcdV\xcbz\x17/#X\xa1\x08\n\xc9\xed@\xd7\xf7:\xf8\xa7r\xf5LX\x93\xa3\x91\xc2Z\xf9\xb1[&\x11\x81\xaf,\x19,\x9b\xe5\x15$\x85\x89\xfe\x94l\xae\x1b\xa2\xe6\xdb\xb7\x1b\xcc\x91>\xbbRl/\xaa\x10\xb75-p\x85\x07\xf7\xf9\x1fv\xdc\xe1\x9d\x9f\x98\x93\x0b\x19tB\x12@\xfa\x0e\xf0B\xdc\xc7\xb2kB/\xefP=`C"~Z6\x11\xe6\x10\xf8<\xb57z\x16\x0b\xd8\xe4\xbc\x18\xce\xb0\xa1C#\xf6\nfT\xfb\xcb.\xc0a\xa1\xa8{~\xa6\x8e:\xfcGuIg\x98\xed\xf8\xdf\x83\xe5\xe3EO\xe3Y\x92\xa2XS\x98C\xd2u\xb0\x91\xf2^\x05\xfb&\x1fv-F\x01\xc6\tF\x05\xa1\x11\xc5\x1c\xae\x96\xb2\xe6\xa1\x18\xc4AY\xfb\x83z>\x8eO\xe7\x0e\xbf\xe0dx\x03:\xb5\xb6\xcb\'\xb6\xca\x10\xff\xb9M\x17\xdd3\xc5\xa7\xd4F\x01\xd9\x9c5\x0c\xac\xaf\xad\xb6\x8d\x9b\x9b\xa8\x92/\xe3\r\xba\x7f\x1c\xf0\xb5\x1b\x00\xa6\xb6\xf76\xe3\xa7\x00[\xc6}\xa91\xd0i\x06\xfar\xdd\x08\xab\'e\xe9\x9c\xfe\xa7\xdf\xa2\xdf\x95\\\xe17F\x7fK\xf1\xc0\x0f\x99a\xaa \xcb\x87\xb9z`\x8a\xc6.\xe3\x16\xa4^\x80l\xef\xf8h\xb6\xb6\xad9\x11\x15\x9a\xc7l^\xf0@_\x9bU\xc4\xbc=\xaf\x1d\xba\xdb\x8d}c\xc1\x03;E\xcbD\x80aL\xd36Y\x10\x84\x8fAy&\x1c\xd3U]lo0y\xcd\x19r/\x04\xfdi+\xdd\xa6\x04\xd0&\x10\\\x1e\x8dY\x11\xcfG\xbf\xc7\xb89\x19f\xdd\xbdJS\x18\xb0\xff_\x95~\xc5S\xb4\xd7\x89f%\x92\x87\x7fjFI>J\x8c\xb4\x0b\xd6\xdb\x9d&\x16b\x8bm\x0bf\x10+\x18SuJ\x94G\xe49\xcet\xef\xfb\tI\xf3bb\xa4\x0c\xc0\xf7\xbc\xc9u,Fx\xbeV\xc3{\xab\x11\xbd\x1c\xc87\xe9\xddS\xf5\xff\xa9\xa7Y\x1a\xaa\xfa5l\x0e\xb7\xdex\xa9nL,Q\xa0\xdakH\x95\\\x95.4Bic\xb8~w\xe0\xf7=\x8a\xfd4\xad.\xb1\x00\x06\x12\xd7\x12\x8eo\x8d(\xda.\x04;\xeb\x95\xe0v\xcdr\x1e3?\xe3^\xae\xe2\xd3\x88a\xd96p\t\xc7\x10o:\xc4G\xd3\xa7\x1b\'\xf3\xff\xf4\x9bA)\x8b\xbbb\xc0\xf2NZ\xfd"d\xf6l\x00&\x9de\xb5\x01\xa8\xb10\xd2/\xf7\x93\xf8k"e\x90p\x915\xfbn\xeb\x04U}\xd1\xae \xee\xbc5\xf5\xe4\xf9\xb0b\xca\x95\xf8\xe6_\xd6\xcfPV\x8eB\x9c\xfeZ\x81j\x85\xd0(\xde\xd45!\xe8]\x1c\xfe\x06^\x86\xa7Jr\xe4\x1a\x0f@\xcd\xffW\x1d\xefZ\xcdq2\xf1"\xe6\x1f6vb\x0b\xf7\x80\x02[\xf9\xa8\x15\xb5\xe0)\xacd48\xf0\xc2\x85lX\xa9k\xa4\x99\xc7\xfa\x16\x17\xbf')

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

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

	fake.null_boolean()
	# None

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

	fake.uuid4()
	# '7bc8ed1e-9b17-7a1d-ee2e-65b6c41909da'

	fake.language_code()
	# u'niu'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Kierepka'

	fake.name_female()
	# u'pani Kornelia Macho\u0144'

	fake.prefix_male()
	# u'pan'

	fake.prefix()
	# u'pan'

	fake.identity_card_number()
	# u'NMW277643'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Albert Matyszczak'

	fake.name()
	# u'Pawe\u0142 Pasiak'

	fake.first_name()
	# u'Dawid'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'J\u0119drzej'

	fake.first_name_female()
	# u'Lidia'

	fake.last_name_female()
	# u'Sowa\u0142a'

	fake.last_name()
	# u'Nieszporek'

	fake.prefix_female()
	# u'pani'

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

::

	fake.phone_number()
	# u'+48 734 630 707'

	fake.msisdn()
	# '7825592107944'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'aleja Topolowa 00/20\n21-160 Elbl\u0105g',
	#     'birthdate': datetime.date(1964, 6, 7),
	#     'mail': u'sylwia54@o2.pl',
	#     'name': u'Kaja \u015awierszcz',
	#     'sex': 'F',
	#     'username': u'suboczmarcel'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'al. Sosnowa 922\n76-507 Olsztyn',
	#     'birthdate': datetime.date(2017, 11, 20),
	#     'blood_group': 'AB-',
	#     'company': u'Majsterek Ltd',
	#     'current_location': (Decimal('-41.5811245'), Decimal('107.102661')),
	#     'job': u'Konferansjer',
	#     'mail': u'fskubis@yahoo.com',
	#     'name': u'pani Dagmara Rut',
	#     'residence': u'ul. Szewska 62/48\n76-760 Miko\u0142\xf3w',
	#     'sex': 'M',
	#     'ssn': u'74112318005',
	#     'username': u'qhajda',
	#     'website': [   u'http://granat.org/',
	#                    u'https://www.strojwas-witaszek.net/',
	#                    u'https://bracha-orzeszek.net/',
	#                    u'http://blazejak.pl/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'bnSFelFkbtWzOnDZlDSH',
	#     u'maciejpacyga@kwasek.org',
	#     6949,
	#     datetime.datetime(1971, 2, 8, 23, 30, 4),
	#     3565,
	#     u'elzbieta91@interia.pl',
	#     u'oSjUJMsqRtNBPbmecFnh',
	#     8886,
	#     89,
	#     u'GWRqBlJSzLXWqyqnLBeN',
	#     u'pkaczmarkiewicz@o2.pl',
	#     2783)

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'tgadzala@yahoo.com',
	#         u'ixNhLmTqdJOOGqoLYAog',
	#         datetime.datetime(1992, 3, 8, 18, 20, 42),
	#         u'rHJCREflxYATTVFtyzva',
	#         datetime.datetime(1971, 3, 4, 8, 40, 28),
	#         u'VEYrLBZaLRAILcjnJPSD',
	#         u'UoLIuUAkjAHECTWXYOrn',
	#         datetime.datetime(2002, 10, 7, 18, 44, 45),
	#         u'VEENxQxRFLgTDFRePmNi',
	#         datetime.datetime(1998, 3, 1, 2, 54, 2)],
	#     {   u'adipisci': u'wlkRhrBJyqgmONdEmYeS',
	#         u'aliquam': 6186,
	#         u'ducimus': datetime.datetime(1991, 12, 18, 19, 24, 3),
	#         u'explicabo': u'rlOyWupUAishOyuIaytV',
	#         u'itaque': u'OUtvVdMHRgKtqPQUSlyV',
	#         u'minus': u'tadlamalwina@kowalak-morcinek.pl',
	#         u'natus': 13954.189575,
	#         u'nobis': u'maksymborys@yahoo.com',
	#         u'quidem': datetime.datetime(2015, 8, 30, 5, 23, 53),
	#         u'repellendus': u'xPbbINQbfHXIiPQMURTH'},
	#     {   u'cupiditate': {   9: datetime.datetime(1975, 11, 27, 17, 59, 46),
	#                            10: [   9284,
	#                                    u'ksamul@gmail.com',
	#                                    u'https://www.klejna.com/search/'],
	#                            11: {   9: u'OARCyxdpvkOoShAVftYS',
	#                                    10: u'ifaqXQZJVweVGINhdFWi',
	#                                    11: [u'ItBVVRNwdtQMMfnuLppU', 7765]}},
	#         u'maiores': {   0: 2048,
	#                         1: [   u'porwolgustaw@interia.pl',
	#                                Decimal('876.0'),
	#                                870],
	#                         2: {   0: u'DDZeYdhYmaGRpAdyuowg',
	#                                1: 9865,
	#                                2: [5548, 263]}},
	#         u'perferendis': {   8: u'FiXGfjWYItlplDDvBeYI',
	#                             9: [   u'vwWkaHJdJdPnZNXAplgN',
	#                                    5362,
	#                                    u'BACdWHMMnzWWJGOwJbOt'],
	#                             10: {   8: u'AAsIPPaPiqCupTOXmmcN',
	#                                     9: u'ZKjLwTiwfMWvzrDrJhpv',
	#                                     10: [u'alangier@plizga.org', 4702]}},
	#         u'quas': {   7: Decimal('-41436928845.3'),
	#                      8: [   8044,
	#                             u'blqiYwWjUKVsRKRGGGPM',
	#                             u'HfzPiuZnlNWTMMvcYZGP'],
	#                      9: {   7: datetime.datetime(2016, 8, 10, 18, 10, 3),
	#                             8: u'yfeeekHSvctxHVTUHdzA',
	#                             9: [   u'https://www.kruszona.org/privacy.htm',
	#                                    5110]}},
	#         u'quisquam': {   6: u'UqUcBaYbeWgprrIGJnan',
	#                          7: [   datetime.datetime(1989, 8, 13, 23, 11, 21),
	#                                 -2635362368895.4,
	#                                 877927.5936054],
	#                          8: {   6: u'https://www.lyp-kolsut.com/explore/wp-content/wp-content/about.htm',
	#                                 7: 4186,
	#                                 8: [772314373.6236, 1618]}},
	#         u'quod': {   4: u'XHlkLNVxJSWbpBsDNAqo',
	#                      5: [   u'daLpHYLkTkPQqRRLQJHT',
	#                             Decimal('-431091.455051'),
	#                             u'xmndUmAJNuLZpwazJbli'],
	#                      6: {   4: 537319711410.52,
	#                             5: u'AXAWQyLyLrfnycZchEhD',
	#                             6: [   u'SJbMakfwQfgAFaYZJkjG',
	#                                    u'https://starzak.pl/']}},
	#         u'quos': {   3: datetime.datetime(1973, 9, 1, 15, 1, 55),
	#                      4: [   u'JHmdGknTyNJFpqoLtbxo',
	#                             u'http://gluszko.com/search/',
	#                             3823],
	#                      5: {   3: 69,
	#                             4: u'monika77@o2.pl',
	#                             5: [   datetime.datetime(2007, 6, 21, 10, 38, 27),
	#                                    1577]}},
	#         u'saepe': {   5: -81344.54,
	#                       6: [   u'yWVvOyPgOtFqJVeaUlPL',
	#                              u'hwXxZaZAxELjdKCSyCUZ',
	#                              u'CMqQFuCgtQTeVFgvRGUV'],
	#                       7: {   5: datetime.datetime(1974, 4, 4, 8, 30, 19),
	#                              6: datetime.datetime(1995, 8, 24, 14, 51, 13),
	#                              7: [u'aRybmxqRbSvnOwaFVBbO', -7742.3735]}},
	#         u'sint': {   2: 3678,
	#                      3: [   u'pgrzebyk@aleksa.com',
	#                             u'zkxCOmeGrRtarYwZtsKt',
	#                             -56.2364606795097],
	#                      4: {   2: u'https://lenc.com/login/',
	#                             3: 9786,
	#                             4: [20896054779.33, u'RTZLQFXVxQDSEoYSybgC']}},
	#         u'veniam': {   1: u'xMtNGzGTLTWjXDKHhwpf',
	#                        2: [   datetime.datetime(1976, 5, 25, 16, 23, 57),
	#                               u'sGkrmnEyvDrNAXbjRbaq',
	#                               u'polomkazimierz@mak-cyman.com'],
	#                        3: {   1: 1096,
	#                               2: u'https://krzystek.com/blog/posts/category/terms/',
	#                               3: [   u'zauchajan@yahoo.com',
	#                                      -9375329538178.29]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'cyzGqPmipArGDyTderjq',
	#     4297,
	#     u'lkUVQVuwuqJyLNIbJxrR',
	#     7150,
	#     4572,
	#     u'eRzeoqITHKtzvwxKXkdk',
	#     u'FzkEYWyafuAoCudhYIHd',
	#     Decimal('4.3392266464E+11'),
	#     u'http://www.szumna.com/main/',
	#     u'DLfpKFnnOPaUNQAWlDvQ',
	#     5967]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   7189792532.75,
	#     u'nrDSZFuCqgzQXOXtbzdx',
	#     Decimal('-92666170471.2'),
	#     245,
	#     u'DPtpAVJFnQbhgFxllYgh',
	#     888,
	#     u'ouUmkGbIqrwoLNAnPDOW')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'http://www.tasarz.org/faq/', u'QCYBtXSSxLDYIpuMnyfo', 5100, u'FyMXzNRWlGEORgddcshI', 1411900114.0, -595518266402.0, u'http://www.kossak.pl/blog/app/list/author/', u'bLgPrDMIjyqHopCCzMqc', u'fqaALBlrAeUPcwTNcVCz', datetime.datetime(1989, 6, 16, 7, 29, 54), u'hKwwDCOmkpYsWMtkLSIg'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'amet': datetime.datetime(2013, 4, 25, 10, 11, 24),
	#     u'aperiam': u'https://www.labno-drobnik.com/home.php',
	#     u'autem': u'JySBLhpUeluoloMOxPxZ',
	#     u'consectetur': u'AYzrENQcscpXHAysOvhf',
	#     u'dolor': u'kOnvAlSxopXHDVYlKnHR',
	#     u'ipsam': u'mXqKCjcFvXsDxfCCKlms',
	#     u'recusandae': u'https://www.jonik.com/'}

	fake.pyint()
	# 9788

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

::

	fake.ssn()
	# u'89092301516'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2017-10-18 18:39:21 Firefox/6.0'

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

	fake.opera()
	# u'Opera/8.61.(Windows NT 6.1; yue-HK) Presto/2.9.186 Version/12.00'

	fake.windows_platform_token()
	# u'Windows 98'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; nds-NL; rv:1.9.0.20) Gecko/2018-03-06 03:23:01 Firefox/3.8'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5320 (KHTML, like Gecko) Chrome/25.0.879.0 Safari/5320'

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

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