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

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

::

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

	fake.street_name()
	# u'Witosa'

	fake.address()
	# u'ul. Konarskiego 13\n03-165 Ole\u015bnica'

	fake.street_address()
	# u'ulica W\u0142adys\u0142awa Jagie\u0142\u0142y 832'

	fake.postcode()
	# u'04-391'

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

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

	fake.country()
	# u'Guinea'

	fake.street_prefix()
	# u'ulica'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'90'

	fake.region()
	# u'Podkarpackie'

	fake.city()
	# u'Myszk\xf3w'

	fake.street_prefix_short()
	# u'ul.'

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

::

	fake.license_plate()
	# u'4N 4708H'

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

::

	fake.bban()
	# 'QNUL4460726323322'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB14NBGS9680475783027'

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

::

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

	fake.ean13()
	# u'9741965213517'

	fake.ean8()
	# u'92706057'

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

::

	fake.rgb_css_color()
	# u'rgb(199,159,253)'

	fake.color_name()
	# u'SandyBrown'

	fake.rgb_color()
	# u'11,185,222'

	fake.safe_hex_color()
	# u'#778800'

	fake.safe_color_name()
	# u'green'

	fake.hex_color()
	# u'#14ef78'

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

::

	fake.local_regon()
	# '25386990588333'

	fake.company()
	# u'Kurp, N\xf3\u017cka and Bazyluk'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Distributed 5thgeneration protocol'

	fake.company_vat()
	# '1890111744'

	fake.bs()
	# u'matrix B2B e-services'

	fake.regon()
	# '712806410'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nGaja \u0141aciak\n180017197933621 04/23\nCVC: 985\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'VTC'

	fake.currency_code()
	# 'KES'

	fake.currency_name()
	# 'Honduran lempira'

	fake.cryptocurrency_name()
	# 'IOTA'

	fake.cryptocurrency()
	# ('LTC', 'Litecoin')

	fake.currency()
	# ('STD', 'S\xc3\xa3o Tom\xc3\xa9 and Pr\xc3\xadncipe dobra')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 18, 5, 56, 17)

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

	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(1989, 6, 29, 0, 18, 8)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2013, 3, 21)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 1, 13, 13, 15)

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

	fake.day_of_week()
	# u'czwartek'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 3, 20, 5, 4, 44)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1995, 6, 23)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2000, 7, 24, 12, 2, 6)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2012-03-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, 49)

	fake.date_object(end_datetime=None)
	# datetime.date(1996, 8, 10)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 5, 7)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1990-02-17T18:21:03'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2013, 8, 4)

	fake.month()
	# '03'

	fake.year()
	# '1995'

	fake.day_of_month()
	# '10'

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

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

	fake.century()
	# u'XIV'

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

	fake.time_object(end_datetime=None)
	# datetime.time(1, 7, 49)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 4, 27, 10, 26, 42)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1981, 7, 21, 17, 28, 14)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 3, 20, 52, 51)

	fake.month_name()
	# u'czerwiec'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(687, 10, 29, 17, 31, 18)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(3196, 55710)

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

::

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

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

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

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

	fake.file_name(category=None, extension=None)
	# u'vero.xlsx'

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

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

::

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

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

	fake.tld()
	# u'pl'

	fake.email(*args, **kwargs)
	# u'sandramonkiewicz@stefanik-trzepizur.org'

	fake.url(schemes=None)
	# u'http://zyrek.pl/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'post'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'swawrzonek@lodyga.com'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'janyleon@oleskiewicz-dyjach.com'

	fake.domain_name(*args, **kwargs)
	# u'waldoch.net'

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

	fake.domain_word(*args, **kwargs)
	# u'mostek-orzeszek'

	fake.slug(*args, **kwargs)
	# u'libero-reiciendis'

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

	fake.company_email(*args, **kwargs)
	# u'vziniewicz@kopala-fiutak.pl'

	fake.uri()
	# u'http://www.wazna-mizgala.pl/category/'

	fake.ipv6(network=False)
	# '6768:19c:45a2:bb16:ff01:7942:4af6:d467'

	fake.free_email(*args, **kwargs)
	# u'janina67@hotmail.com'

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

	fake.mac_address()
	# u'ec:69:a0:ce:e5:82'

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

::

	fake.isbn10(separator="-")
	# u'0-321-05688-4'

	fake.isbn13(separator="-")
	# u'978-1-65782-144-6'

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

::

	fake.job()
	# u'Deweloper budowlany'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Sapiente nobis a explicabo perferendis nulla cum possimus. Optio sequi iste pariatur dignissimos consectetur. Earum omnis quo doloremque reiciendis.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Perferendis nam enim laborum. Temporibus quaerat quod amet sequi. Voluptatem laudantium incidunt.',
	#     u'Dignissimos commodi perferendis. Qui veritatis dignissimos asperiores dolorem hic.',
	#     u'Doloremque doloremque accusamus fugiat recusandae quam. Autem sed neque nesciunt maiores doloribus. Eaque quasi sunt nemo aspernatur deserunt.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Autem reiciendis odit itaque voluptates architecto vitae.',
	#     u'Optio aperiam culpa corporis consequuntur a ut.',
	#     u'Nihil temporibus excepturi earum non.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Nobis fugit voluptatem dignissimos atque sapiente.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Reprehenderit reiciendis debitis quasi quam aspernatur.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'Rqh@7AwcAc'

	fake.locale()
	# u'lv_LV'

	fake.binary(length=1048576)
	# bytearray(b'\x95\x04\xf5\x18\\9\x07f\xd4\x86\x9d\x8c\x04mc\x99!\xd7\x1a\xc9\x86\x9d\xa0\xb5\xb4\xc1\xd3 \x9fS+r\xd9\xf7\x9c"9\xbf\x12\x05:\x1dH2\xad\xa9>\x12\xfc\x8a\x01\xa0!A\xc9\x83\xacYj\xa9j\x1b\xb5\xe0\xf3l\x12\x06\xb9:\xdd\xf4\xd4\x12\xe2\xc5S\x80\xda\xe9`\xe2Y\x1e"Ob\x9cDd}\x03T\x18\x84S&\xc8\xe6,\xa7~&0\xba\x1du\xdd\x01\x1c\'\xc0qaq\xf4\xab\'\x91\x0f\x0b\xff/\x80\x86.o\x99\xa8U\x02qN\xf3 \x07\xc6>Mg\x8b\x7f\x91\x85&\xcf+V\x0e\x10uh-\x1d"|Z\x11\x8cZ\x9d\xca\xd9\xd9\xbe\x95h\xe6%\xd9\xc9Y\x16\xd6\xaao\x80\xe2\xee\x8c\r0\xa3kC\xc71\x88g\x1dP\xdf\x98i\x91L\x81\x8a\x0c\xf3)\x82e\x99\x81\xdf\xa2m\xcbo}\xc9G\x9bW\xbe\x95\x98Dg\x97\xb9\x1c\t\x92zB\xe7\xff\xd8\x15\r\xc6\xca\xfe\xd1\x18\xb4\x9bk\x12\xa1|\xdd!p\x8b\xeb\x16\xb8q\x90\xc4\xb4\xea\x83U\xbf!:\xd2\x7fj\xe3#Z\x92\xa3D\xc7\x8a\x990\x02#\x83\xc0\x04\xfa\xac\xdd\xbb\x90\xac\xc5n\x1a\x9a\xb5\xc1%\\(\xd4\xaf\xf5\x91\x86Ib\xd9\xe1\x05\xc1%\x98\x14\x93K\x8c\xfa\x1aH\x8a\x94\x9d\x1c-\xaaI\xc3\xeb\xaf\xfd\x025\xa4\xf6\xcd\x01W\x9b\x941\xea\xd0\xdd\xb7i\x96\xca]\x90\xbdK\x82\xcf\x06\x1d\xaa\xa6T\x1e\x14lo\x8c\xa6\x94n.5\x9cK\x85ed\x9c\xff\x1d-8\xfcn\xaaE \xbeFr\xf7wg\xf5\x05\xb0W\xfa\x82\x80\x18\xe9\x82\x93y\x95\xcdL\x93v\x01\xa9\x0b\x8b@"\xf9\xcdt\xd9\xc4\xc5CheH{\xc8`\xd2\xb1\xd7\xfa\xb7\xbeh\x11T\xd3\xe3\x86>[5\xd8\n+6\x92\x06\xa6c\x9a\x1f\x9e\xfbm\x93\x84](gz\'\xd2w\x0b\x93|W\xcbe\x85\xc8\x13~u\xde\x13\xa5\x10$\\\xc7\x00\x05x\t\x8d\x87\x06a\xa4\xb6\x9d\xbcCGx\x84\xf6xa\xd0\x13z\xc7\x08\x8dR\x02\xda\x03\xbe\xa1\xcb\xc33\xbf~o\t\'W\xf5\xb8\xa2\xf3\xb3q\x0f\xd7\x95Dj\xaa\xf3\x081DB>\x10W^R\x1e$\xea\xe0n\xab\xce\xe4\x19i\xbcA\x131.\xd8\xb9\xfc\x13\xc0\xd7\x9eE\xe0\xb7\x7fs\xf8\x01\xc2\xd3\xfbY.\x1bX\x010\xd5i\x127M\x99\xcd\x17\xb2H\x13\x1c\xf0F^y$\x9b1\x84\x94\xfdXW\x14\xdd[\xdef\xe34W_\t\x15\x87\x9a\xaa\x9d_\x1e1r\x06\x17\x97\xa1\xb3O\xc5L\x93\xfe\x98\xa9\xa0|*\x1d\xf4\xb4W\xd6\x92\x88\xe3\x84d\xd7k\xba5j\xd7\xe8\x19\xcb\xe9\x19\xc8\xcc\x15\xef-*?a\x0e\x8e\x86\xdc\x1e\xd73`q[\xd3D]\x04{\x8e\x18\xf1\x10\x8cl\xc5\xd8\x94\xa1\xa2\t\x85\x11\x9cc*\xa3*\xbc\xca\x93\x8e\xe1RN)-]z\xf5U#sR\x9a:k\x1ak\x1e\xeb\xe5\xb4\xa5\xac\xed\xfa@y]\x19\x8a\x8ew\xac\x1f\xa8\xa5\xb37Y\x83\xf5\xea?\xce\x17\xed\x0c\x024e-\xe1>^/M\xd9H\nY\x8aV\xddx\xa5Vr\xff\xf0\x12\x91\x02[\x97\xf1\xd5\xc9\xcb\xe1\x0c\xd0\x92oV\xf7\xb3Q\\Q`\xda"\xdf\xb0\xa5\xb6\xf8\x04\x05\xea\xccNx\xe5\xcb\x134^\xf0\xc1`=\x1f\x9bf\xa4\x12\\\xccjG[\xf1\xb7\xd3\x1a3U,\x9e\xe9Ht\xca\x85\x0f\xd8\xfau$7\xcc\xef\xec\x93\xc9\x9c\x92l\xfc k\xce!9\x939F]\xdd\xf7\xac\xf1g\xb4e\x82\xacE \x15r\xa3\x0ez\xa0P\xe6\x12\xfar\xc4Kw\x0f@\xad\xf54\x1c\xf2\x15/K[}\x00\xe5\xa6\x97\xa6\xd3\xc3\x0cd\x94=\x84\xd9\xfb\x8d\x96}\xde\xa5"\xc3\x01\xf0\xfe\xb3\x0b\x16\x97\xc1L\x17\x8c\xb1\x17g\xc3\x86\xaf\xe1&G~\x10\xaf\xf9\x8f\xc6\x9c!\x8a/\xb7\xc8\xad\xcf\xf5\x1d\\\x0ew\xa5\x8a\xb7\x90\xd5(@\xf3\xf4\r\x97\x1a\x11Qa+T^Wq\x19\xd0\x15\x1f\xd5\x1d\x1f\xd8\xef\xe2\x80\xe0\xbfQ\xa49W\xd6\xaa\t\xff^`\xcd\x05I\x83[5\xeeM\xce\xbe\xb2\x90\x10%i\xa3s\xe7/\xb53J\xeb\xf9\xfc\x13')

	fake.md5(raw_output=False)
	# '9d0837f5fc8c3d6bad98ef27b0684bba'

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

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'd32982ed-eb03-8b35-84de-b43b1b995009'

	fake.language_code()
	# u'shs'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Gruza'

	fake.name_female()
	# u'pani Nela Kliszcz'

	fake.prefix_male()
	# u'pan'

	fake.prefix()
	# u'pani'

	fake.identity_card_number()
	# u'SGV319617'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Kornel Tec\u0142aw'

	fake.name()
	# u'Eryk Szwaj'

	fake.first_name()
	# u'Marcin'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Stanis\u0142aw'

	fake.first_name_female()
	# u'Dagmara'

	fake.last_name_female()
	# u'\u0141uckiewicz'

	fake.last_name()
	# u'Kruszka'

	fake.prefix_female()
	# u'pani'

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

::

	fake.phone_number()
	# u'22 901 01 33'

	fake.msisdn()
	# '5156296220432'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'pl. Gl\xf3wna 03/83\n79-936 Bi\u0142goraj',
	#     'birthdate': datetime.date(1934, 1, 8),
	#     'mail': u'ojakimiak@onet.pl',
	#     'name': u'Aurelia Walusiak',
	#     'sex': 'F',
	#     'username': u'olgierd47'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'ul. Prusa 903\n07-479 Leszno',
	#     'birthdate': datetime.date(1922, 8, 31),
	#     'blood_group': '0-',
	#     'company': u'Siemieniec, Mulawa and Kuciak',
	#     'current_location': (Decimal('53.8730105'), Decimal('-74.642591')),
	#     'job': u'Broker',
	#     'mail': u'brunomiechowicz@onet.pl',
	#     'name': u'Anita Kubek',
	#     'residence': u'aleja Kaszubska 095\n22-460 \u015awidnica',
	#     'sex': 'M',
	#     'ssn': u'05252011114',
	#     'username': u'iwopiekacz',
	#     'website': [   u'http://www.brodka-kozon.pl/',
	#                    u'https://www.surmiak.com/',
	#                    u'http://jarka-koscielak.com/',
	#                    u'http://www.solis.net/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'sECEYAjQAgvnsGhQIndC', 7155.500123346, u'IsTzVGQFqkJmXUvvTVyH', u'APuAqPiWfzondzBSsjjS', 1803, u'ERAvTiOxWHMPqQxjuCfM', u'komankacper@kubow.com', Decimal('-921622.4299'), u'http://www.szlapka-liedtke.pl/', -428.7, u'http://www.wochnik.pl/blog/category.html', u'aJVPLtjXcaAecSWPnpyw'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   5743,
	#         u'tqGmpZvdbxQNLbCjlWoJ',
	#         u'eRbWLRyzRotjJjouWChz',
	#         4193052082.97371,
	#         Decimal('69841.242'),
	#         u'WUePreyNsoMqqVFpZxNO',
	#         3377,
	#         u'eososehTsxoVYTxqDqjr',
	#         2968,
	#         datetime.datetime(1972, 3, 24, 7, 30, 48)],
	#     {   u'alias': u'hqbWFqIhXgGzvxrorKco',
	#         u'beatae': Decimal('-19687384.0'),
	#         u'corporis': datetime.datetime(2009, 11, 6, 1, 10, 46),
	#         u'ea': u'QIBhopngxfZoogztaxdX',
	#         u'ex': Decimal('-162867997.11'),
	#         u'fugit': u'mateusz91@szpara-ostasz.net',
	#         u'itaque': datetime.datetime(1970, 12, 5, 12, 58, 41),
	#         u'perferendis': 583,
	#         u'sunt': 2714,
	#         u'voluptas': datetime.datetime(1996, 1, 13, 6, 3, 14)},
	#     {   u'aliquid': {   3: 2029,
	#                         4: [   440,
	#                                u'UhFgJBjJlCkxMChGqXZz',
	#                                u'ceNvSGRAARWjJCBPpjmZ'],
	#                         5: {   3: datetime.datetime(1986, 10, 4, 22, 2, 22),
	#                                4: u'zDFQBBWNrOUaMbMCANxn',
	#                                5: [   Decimal('6.15194529508E+13'),
	#                                       datetime.datetime(2017, 1, 13, 3, 31, 51)]}},
	#         u'corrupti': {   0: 2788,
	#                          1: [   datetime.datetime(1980, 7, 20, 10, 45, 47),
	#                                 u'DlKYZdvDIQhauiWVMspf',
	#                                 -803899102013.3],
	#                          2: {   0: u'qgRUFNmrFdObfpKgxsdW',
	#                                 1: datetime.datetime(1990, 12, 12, 16, 12, 15),
	#                                 2: [   u'IwgLNvUfUbZNpBQlfoiN',
	#                                        Decimal('24135.6491404')]}},
	#         u'ipsa': {   6: 476844601983.624,
	#                      7: [   Decimal('1786113.4378'),
	#                             u'vcdKaEjDblrGkMNVBLOZ',
	#                             u'jiUHKnCcanZvHtfQTGfI'],
	#                      8: {   6: datetime.datetime(2001, 7, 24, 22, 53, 36),
	#                             7: u'KnLdHesIWTODeLpQCQHE',
	#                             8: [   u'http://www.neubauer-becker.pl/index/',
	#                                    7506]}},
	#         u'minus': {   2: 6893,
	#                       3: [   u'http://www.majdan.com/search/list/index.htm',
	#                              u'kyjubSJVagxpzdeBlUfB',
	#                              u'MYgIuSlHnmLanRmQMuQq'],
	#                       4: {   2: -1854510096.7,
	#                              3: 4888,
	#                              4: [   u'krzysztof07@dziopa.pl',
	#                                     -705.904097788142]}},
	#         u'praesentium': {   1: 432,
	#                             2: [   4166,
	#                                    u'https://www.berdzik.com/',
	#                                    u'hoaVFDdjSJidkQLFVIJz'],
	#                             3: {   1: u'djokiItDprKEkPDTWlAc',
	#                                    2: 6018,
	#                                    3: [-15.7615969, u'sadejewa@o2.pl']}},
	#         u'provident': {   8: 9662,
	#                           9: [   u'zvRYcZYVwyKGNRnlwmIn',
	#                                  u'qPohMLxnRjRSzewTshdh',
	#                                  u'lNJWlmLxxvMnNUNzvdWW'],
	#                           10: {   8: u'javGusapkekgjXINLLiI',
	#                                   9: 2921,
	#                                   10: [   514001407.16,
	#                                           u'http://erdmann.pl/post/']}},
	#         u'quam': {   7: u'uqQzXcZNCklFLvTtSLmj',
	#                      8: [   u'ILxOTrOtWZNVSMeZxVxF',
	#                             u'sxnXkwUnIldtUGSpgBtg',
	#                             Decimal('-8042748614.0')],
	#                      9: {   7: datetime.datetime(1984, 1, 25, 10, 0, 6),
	#                             8: Decimal('-2368132.0'),
	#                             9: [   u'gFHhrPOUiIoEELQpHRRT',
	#                                    datetime.datetime(2012, 3, 19, 18, 44, 12)]}},
	#         u'quasi': {   9: u'camwnnGJfFcGetKpMTpi',
	#                       10: [   u'https://www.mlynarz-zachwieja.org/category/',
	#                               9110,
	#                               u'LVCRudXSQJFiYhNNBKgN'],
	#                       11: {   9: u'http://www.krokosz.pl/categories/list/login.php',
	#                               10: 1108,
	#                               11: [   u'OdhdoDrgBrCdcSaMwXkB',
	#                                       datetime.datetime(2008, 8, 25, 11, 10, 46)]}},
	#         u'tempora': {   4: 334.0,
	#                         5: [   3106,
	#                                u'https://kuczaj.net/explore/blog/post/',
	#                                u'kubonangelika@zaras-wasiewicz.org'],
	#                         6: {   4: u'pKROmlYfhvyYFEgQOmUW',
	#                                5: 6872,
	#                                6: [Decimal('9.2943911'), -21993267.5612]}},
	#         u'veritatis': {   5: u'https://www.osko-kazana.com/',
	#                           6: [   5408,
	#                                  Decimal('-7034092708.4'),
	#                                  datetime.datetime(2007, 4, 25, 12, 26, 54)],
	#                           7: {   5: u'https://szaruga.pl/',
	#                                  6: u'EYADWKRQBEuMNtHrkqeX',
	#                                  7: [   u'EQQmPZeQRzLkphKmjfzi',
	#                                         datetime.datetime(2018, 12, 27, 20, 50, 25)]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   4178,
	#     u'ShtizvCceHOXqEqxEOBv',
	#     u'MXmMzkpTuQCNZXqwFTKo',
	#     365,
	#     u'https://www.maciejewicz-kornak.com/',
	#     -27952338606.6612,
	#     u'natanorkisz@hotmail.com',
	#     u'pRkGuHnWwouUFlRVSwVY',
	#     u'http://www.neubauer.org/category/wp-content/login.html',
	#     7175,
	#     datetime.datetime(1991, 11, 17, 12, 38, 9)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'kornelkiszczak@hotmail.com',
	#     40509870.126051,
	#     u'tolasiedlik@kazek.pl',
	#     u'http://www.morgala.pl/login/',
	#     u'http://beska.pl/faq/',
	#     datetime.datetime(1971, 11, 26, 22, 20, 20),
	#     u'isKZtswQmCaChfLootNk',
	#     u'PRoDPDAXOxugKACPyGTE',
	#     u'slonmonika@o2.pl',
	#     Decimal('-210569150.171'),
	#     datetime.datetime(2000, 5, 18, 8, 42, 49),
	#     u'sFgyMmLfCGJkKSPCVKJj',
	#     u'thcwirWxqPhYLTFtAAqk')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'mdOJQBwuhepgnmJWtGiI', u'tGTDYuYMMitFkXSvMlzQ', u'mTrRVZAzpFKFfOAlGbeB', Decimal('769527580009'), u'http://galon-bos.pl/', u'GXjyzgBHHDwEyuDXLeHs', u'CioNPgowQVtqhawZyzgd', u'HmCbheDHNsyFWnvbFsUO', Decimal('-6413949.52034')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'deserunt': Decimal('2.42718284548E+13'),
	#     u'dolor': 736,
	#     u'explicabo': u'TugBQUgSbmTjPPBPRjpo',
	#     u'hic': u'piekarekeliza@cieplucha.org',
	#     u'impedit': u'smazan@chomik.com',
	#     u'ipsam': u'http://druszcz-kleinschmidt.pl/search/search/',
	#     u'magni': 2347,
	#     u'maxime': 7154,
	#     u'necessitatibus': u'sjFTXHviYlaJZBFNprOx',
	#     u'nihil': u'wExegXpXbKOkROaFdnPt',
	#     u'quia': u'https://www.janczura-kwarciak.com/homepage/',
	#     u'sunt': u'kwRpnxMaWHfTbRSUsuvJ',
	#     u'voluptatibus': Decimal('-7313.23')}

	fake.pyint()
	# 9784

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

::

	fake.ssn()
	# u'73011258476'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; am-ET; rv:1.9.1.20) Gecko/2010-09-06 02:35:56 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.97.(X11; Linux i686; ln-CD) Presto/2.9.172 Version/11.00'

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

	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 (compatible; MSIE 6.0; Windows CE; Trident/5.0)'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5351 (KHTML, like Gecko) Chrome/51.0.863.0 Safari/5351'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/535.28.2 (KHTML, like Gecko) Version/5.1 Safari/535.28.2'
