
Language pt_PT
===============

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

::

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

	fake.freguesia()
	# u'Vila Verde'

	fake.address()
	# u'Avenida Soares, 54\n5967-710 Barcelos'

	fake.street_address()
	# u'Avenida Luna Sousa, 89'

	fake.postcode()
	# u'7813-947'

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

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

	fake.country()
	# u'Dinamarca'

	fake.city_name()
	# u'Rebordosa'

	fake.street_prefix()
	# u'Av'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'64'

	fake.street_name()
	# u'R. Assun\xe7\xe3o'

	fake.city()
	# u'Vila Real'

	fake.distrito()
	# u'Viana do Castelo'

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

::

	fake.license_plate()
	# u'706 MPH'

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

::

	fake.bban()
	# 'IIUU7470780038108'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB55FXIO4373223979180'

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

::

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

	fake.ean13()
	# u'0168039992526'

	fake.ean8()
	# u'77245465'

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

::

	fake.rgb_css_color()
	# u'rgb(167,65,31)'

	fake.color_name()
	# u'Tan'

	fake.rgb_color()
	# u'10,90,127'

	fake.safe_hex_color()
	# u'#332200'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#d1da8d'

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

::

	fake.company()
	# u'Lopes'

	fake.company_suffix()
	# u'Lda.'

	fake.catch_phrase()
	# u'Extended even-keeled budgetary management'

	fake.bs()
	# u'generate best-of-breed models'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nNoa S\xe1\n6011164133361111 03/29\nCVC: 199\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'VTC'

	fake.currency_code()
	# 'STD'

	fake.currency_name()
	# 'Zambian kwacha'

	fake.cryptocurrency_name()
	# 'Titcoin'

	fake.cryptocurrency()
	# ('EOS', 'EOS.IO')

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

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 12, 3, 0, 37)

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

	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(2003, 8, 3, 20, 19, 57)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2014, 2, 19)

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

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 9, 17, 19, 17, 59)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1996, 7, 13)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2005, 4, 19, 5, 18, 4)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1991-11-08'

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

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 4, 29)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2012-08-16T06:47:46'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2012, 11, 28)

	fake.month()
	# '11'

	fake.year()
	# '1993'

	fake.day_of_month()
	# '28'

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

	fake.timezone()
	# u'Africa/Porto-Novo'

	fake.century()
	# u'XIV'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1921, 12, 29)

	fake.time_object(end_datetime=None)
	# datetime.time(6, 2, 26)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 2, 4, 12, 7, 29)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2012, 8, 6, 19, 0, 35)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '10:07:41'

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

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

	fake.month_name()
	# 'October'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1908, 3, 5, 18, 57, 22)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(13586, 15949)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/vitae/placeat.wav'

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

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

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

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

::

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

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

	fake.tld()
	# u'pt'

	fake.email(*args, **kwargs)
	# u'vazbruno@mendes.net'

	fake.url(schemes=None)
	# u'https://www.monteiro.com/'

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'post'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'tgoncalves@sapo.pt'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'assuncaolucas@mendes.pt'

	fake.domain_name(*args, **kwargs)
	# u'amaral.org'

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

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

	fake.slug(*args, **kwargs)
	# u'itaque-cumque-in'

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

	fake.company_email(*args, **kwargs)
	# u'eduardaguerreiro@vieira.com'

	fake.uri()
	# u'http://www.sousa.pt/privacy.htm'

	fake.ipv6(network=False)
	# '9d84:b6f9:e550:6442:75f0:c908:45ca:6f69'

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

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

	fake.mac_address()
	# u'c9:15:80:cf:14:40'

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

::

	fake.isbn10(separator="-")
	# u'0-87913-849-1'

	fake.isbn13(separator="-")
	# u'978-0-9804235-1-8'

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

::

	fake.job()
	# 'Conservator, furniture'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Molestias corrupti corrupti nulla. Corporis nam ipsa delectus. Accusamus quos exercitationem eum eos.\nDucimus doloribus nemo eum perferendis. Quod officia ab quaerat architecto autem dolore.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Accusamus eius consectetur hic distinctio dolores. Velit hic quam saepe nostrum eaque voluptate.',
	#     u'Quis totam saepe aliquam iste. Perspiciatis quasi sed culpa pariatur tempore natus. Sed culpa similique dicta tenetur officia velit.',
	#     u'Molestias quia tenetur deleniti. Officiis corporis aperiam fugiat vel adipisci porro. Placeat deserunt repellendus laboriosam nesciunt atque.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Explicabo quos blanditiis.',
	#     u'Animi modi nesciunt odit dolor aliquid provident dolore.',
	#     u'Tempore reprehenderit ex optio sint.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Id est iure eos. Dolores dignissimos alias accusamus pariatur.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Omnis consectetur doloribus molestias unde.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'!X(0B@ns@*'

	fake.locale()
	# u'lo_LA'

	fake.binary(length=1048576)
	# bytearray(b'\xf5\xb9\xbc:\x9a\xef\x00\x18H\xd4\xac\x8c[\x01\xe6\x97@d "Z\x87{Ic:8\x11Vo4q\xac\xdb\xfax\x96\xb6}$:r\xefK#Y\x08\xcc\t+\x97\xf3\xa7F\x8eM\xf2\xfc1\x80"]\xf4\x84\xdc\x07\xe9\xf9/\xcdq\xdd\x0bP\x88dC\xe1\xa0\x1e\x9fOa\xb8\xca\xcf\xad\xc4\x1ehG\x19d\xf0\xcaoU*`\xb4\xd7\xeaoc\x81\x0c\x99\xfa\x7f*\xdc\r\xa6\xde\xa4\xe6yD\x81\xb7\xdd\xf7F\xb1X\x1a\x1a\x12h\x91\xack7\xa1\x91"/\xafL\xcf\x07\x9b\x14^\xe1\\\x8a\x11\xf5J\xee\x8d\xd4*c\x04\xf5\xac\x87\x86\xe4\xfb\x11\x1fh\xe9\x86\xd6\xbaj\xb1J=]\xee\x02\\\xcf}\x9eF\xd1Q\xc8\xb3\xe6\xd7^&\xa3\xa5\x0f2\x9d\xbc\x9c\x8aF\x8d\xa5\xe4\x85\xe8\xcc\x9f%\xd4\xe1\xccQij\xbc\xa0x\xd1\xef\xaf\xb22o\x9e^\\(7\x9bxz\x7f\x19\xbd_\x88u\xdf\xac\xc9\x83\xdc\x13[\xc7\x19\x06\x19\x16\xb8\x1a\x04h\x03`\x88\x89\x85"X\x18\xa0M\x87\x8fs/<Z!\r\xcf\xd4\xf0\x98\xe07\x12\xc5r-\xeb\xf5\xfb\x81\x7f\xb8\x82\xe1}\xa1\xe42X!\xb6\xb5\x15(,\x0f^\xc6\xdd\xab\xfc\xdc\x9a#4]\x1fz \xd0\xa5\xef\x18j\xfe\xfe\nPR%\xb5\x86_s\xd1\xbay\xc2\xc4\xc1\'\xcf\x88\xf2\xf1\xb1i \xae\x9a\xbb\xb7^\xf5\x18\x07\x8aCza\xd7\xc7/\xbaU&\xa8\xb1\x11\xce\x9c\xb6\xf5\xba\x82u\xbc\xefI\xf4v\xf0\x9ewo\xe1.;\x06\x80\'Jd\x1c\xfe<\xbe\rL\xa1\xabq\xe7\xac\x10Z\xbc4/\xbe\x1f\x04\xb2\xab4.eH \xe6\'\xfd\x0b\x8eY^\xdb\x06p\xfe\xe2\xcfHW\xe6)\xe8\xe6\xdd\xa0\xb3\xe7\x1e\xb4\xba3\xaew\xb9\x888 \x16\xccngF!\x16>\xf0AW\xe2\xab\x91%\xe3\xfd\xa9\x80B\xfe\xa0\xe7\xaf\xf7jo\xc5\\\xcd\xf9\xedv\xfc\xc7\xcc\rg\xbe\x07Lf\x1a\xdd\x8d\x1d\xa2\xf9\x9fI\xcd\xa3\xb82xT)D\xc4u\xc4\xdd\xa51\xe6\n\x00\x08\x15\x80\xf6\x84a^M`\xa8T\xfck\xa2\x9aT\xb7{K\x89\x8f\x06\x94\xa5\xa0\xe9\xa2\xea\xb1\xacfJ\xa8\xff\xe5\xe4|~\xc6\xfc \xbdOf\x1b<{t\x9c\x07\x82\xf4H\xd4\xc1\x01lc\xe0uW\x1fz\x91~!^\xe6\x1f3\xf7\x94\x1eg\x01\x7f#\xfe\x04\xf86\xe9\x8dJ\x8f\xbf\x11\xbf\n\xff\x00\xb7\xcb\xef;\xc7\xb2\x1b\x17\xd5Q\xa2w\x8b\xde\x15\x88\xb7\xc5\xcc\x1f\xaeP\xc0W\t\xb3\x07K\xb7F\xda\xb5~ \xdb\x14\x14g\x10\x0c\xd9~\x99\x9d1\xce\xdf\xc6\xfc\xa83\xdeE\xc9\x1c_\xd1\xdaLL\x01\xa1\xd2\x80]G\xbf\x95\xe4\xbe\xbbz&\x80?aL\xf4\xf5\x18\xee\xd4\xc0M\x91\\[R\xc1\xacB\x04Y8S>\xbb\x04=\xc5!\xd4y\xb7\xd7\x85S4\xd8\xa9\\\x97\xde\xceT\xf5i\x8f>\x95+Y\x97\xb0>@>\x87\xf2\xb3f\xd9\x1ab\x9f)\\;\x15\xaf\x97\xb5\xff\xaeS\xee-\x8c\xab7Vmml\x943\x0e0\xfa\xcf\xae\xf8\xb4-\xf9\xb6\x1c\xa9bRRo\xdc5\x17\xcbB\xaa\x07\xb9\n\xe4\xffi\xc1\x04\xb5t\xca\x12({\x02B\xdbv 7jN\x0b:x\x82\xdeva(\xb8\xef\x9b\xbbN\xafI\xac\x96\xc6p\x18Vu\x10\x17m\x90\r\xda\x989i~\xaf\xbe!\x17\x8e\xda\xaaF\x80\x12\x0b\xc5\x84w\x0c95E\xcf\xe1iIW>\xc8\xf0#;y\xc4\xfaTV\'\xb3\xaf.\x1d)/\xbdS1\xf9\xdb|\xd8CU\xfbD\xb4t\x9c:\x9e\xfdL,\xc3e\xfc|)\x9c\xc6\xbf\x08\xbd\xdcy\x1c\x95-6\xedW4\x84Z\x11\xf1\x06\xee?\xe2Kz\xfb\x93\xe7\x10\xaf|\x8af\xcfy\xa3rN\x83\rz\x11\xd4W\x1f\x98\xa5\x1e\x92H\x9f7\xf6,\xf6\x16\xcf\x9b\x91\xabsX\xd6\x03(\xd6,\x8bZ\x83\xa0&\xbb\x9c\x12\xfaV\xa2\xf8\xc8\xa5\x99\xc11h\x9bs[\x00i\x9f]3sW\xdfFN\x86k\xf1i\xe2\xc7z\x9d\xa4,g\x87)\x01!\x14\xeeem\xb3\x0b\xed\t\xf2\xc1\xd6Z\xdf')

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

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

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'c116a94b-0c55-8011-c6ee-3c6edc64db84'

	fake.language_code()
	# u'wal'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Ferreira'

	fake.name_female()
	# u'Gustavo Moreira'

	fake.prefix_male()
	# u'de'

	fake.prefix()
	# u'da'

	fake.name()
	# u'Afonso Loureiro'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Jorge Amorim'

	fake.first_name()
	# u'Emanuel'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Marcos'

	fake.first_name_female()
	# u'Tom\xe9'

	fake.last_name_female()
	# u'Matias'

	fake.last_name()
	# u'Azevedo'

	fake.prefix_female()
	# u'do'

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

::

	fake.phone_number()
	# u'+351915212838'

	fake.msisdn()
	# '4275133205934'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'R. de Amaral, S/N\n0284-387 Loul\xe9',
	#     'birthdate': datetime.date(1970, 10, 25),
	#     'mail': u'angelo76@sapo.pt',
	#     'name': u'Al\xedcia Miranda',
	#     'sex': 'F',
	#     'username': u'carneiromartim'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Av Cristiano Pinheiro, 58\n0300-755 Cani\xe7o',
	#     'birthdate': datetime.date(1977, 8, 27),
	#     'blood_group': '0+',
	#     'company': u'Monteiro Lda.',
	#     'current_location': (Decimal('56.193767'), Decimal('156.967924')),
	#     'job': 'Air broker',
	#     'mail': u'renatafonseca@clix.pt',
	#     'name': u'Kyara Assun\xe7\xe3o',
	#     'residence': u'Av Fernando Martins, S/N\n2151-908 Barreiro',
	#     'sex': 'M',
	#     'ssn': u'357-65-6084',
	#     'username': u'lmonteiro',
	#     'website': [u'https://moura.com/', u'http://www.pacheco.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime.datetime(1994, 2, 11, 1, 8, 29),
	#     8065,
	#     Decimal('1.36036524003'),
	#     u'uPxQeCKlTwCVNLyFnNHJ',
	#     u'https://www.martins.com/blog/main/category/privacy.html',
	#     u'SSjajyREEnPmszIYuFTq',
	#     u'jIDhdIpJDUMwgUNRlrHK',
	#     datetime.datetime(1983, 2, 13, 2, 33, 33))

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('74525394.311'),
	#         u'bejqUuZUuNPYGkILcQsw',
	#         datetime.datetime(1970, 7, 13, 10, 3, 19),
	#         19.553,
	#         u'FDjgqheZASiQePycJBLI',
	#         u'https://lima.net/',
	#         u'TIwKdIJXKFyaklDkBOPN',
	#         u'iJOUHimVposUDgxneZka',
	#         u'iPQVBpHpFVVMklcVusiV',
	#         u'kevim12@gmail.com'],
	#     {   u'aspernatur': u'cgoncalves@silva.com',
	#         u'deleniti': u'vFUMjGRWvGNnmVDedcRu',
	#         u'excepturi': -41.79271581,
	#         u'id': u'oJNPyZJaDBgCOTYkSBdo',
	#         u'molestias': datetime.datetime(2006, 6, 22, 1, 5, 57),
	#         u'necessitatibus': datetime.datetime(1977, 10, 1, 6, 25, 25),
	#         u'perspiciatis': 7246,
	#         u'tempora': u'qnMfRrKsPbLkEJWogOaO',
	#         u'totam': 4626,
	#         u'voluptates': u'https://lopes.org/privacy/'},
	#     {   u'asperiores': {   8: datetime.datetime(1989, 5, 8, 0, 32, 6),
	#                            9: [   datetime.datetime(1984, 8, 8, 9, 23, 33),
	#                                   -3499585894745.0,
	#                                   u'https://www.pacheco.org/search/author/'],
	#                            10: {   8: Decimal('-686902447318'),
	#                                    9: u'MDjWjVmZvCuKpwVBhAdH',
	#                                    10: [   u'AAKhxckrnDzESeHRmmbm',
	#                                            u'iHdVDksVGJTNglJCEolU']}},
	#         u'debitis': {   1: u'https://www.costa.net/privacy/',
	#                         2: [   u'iWUcVfdDgJWQjtOsPadU',
	#                                Decimal('-8.97536973117E+14'),
	#                                9119],
	#                         3: {   1: -70.22741,
	#                                2: u'hwOjuAHWEBcOrpBHSXTQ',
	#                                3: [615, -5323456638835.9]}},
	#         u'fuga': {   5: 6799,
	#                      6: [541, u'qhenriques@sa.pt', u'mauro14@gmail.com'],
	#                      7: {   5: u'xVfwBntsIkjqjezrlBMj',
	#                             6: Decimal('-4320508518.99'),
	#                             7: [   u'https://www.paiva.org/register.php',
	#                                    u'LoluvQxDPDMfoLIdotxA']}},
	#         u'omnis': {   4: 9088,
	#                       5: [8590, 2025, 1345],
	#                       6: {   4: u'LbXWcLmfbMmekTIkzoey',
	#                              5: u'oNSZwmGQuOWVgmxNpFqH',
	#                              6: [Decimal('-6.6368607'), u'hmota@gmail.com']}},
	#         u'quae': {   7: datetime.datetime(1977, 1, 23, 15, 57, 59),
	#                      8: [   u'HTLcFIuhdcFwyqFDMOPD',
	#                             7254,
	#                             datetime.datetime(1994, 11, 21, 5, 46, 58)],
	#                      9: {   7: datetime.datetime(1976, 12, 28, 21, 1, 8),
	#                             8: u'lsMHCiPVGuvSqMBOlTTE',
	#                             9: [   u'xuhSGIRPfXccJFBQzagS',
	#                                    u'NhHgMVbqaAzKTqpNVXAP']}},
	#         u'rem': {   2: u'NzxPFKmUttmadhDANwzC',
	#                     3: [   7197,
	#                            u'JyqTIwXjxDvIBdCXxGeS',
	#                            u'oxNGUrPLGSopsRPygQRA'],
	#                     4: {   2: u'zXgLmVQBQgGvsZGAxZUx',
	#                            3: u'iZpwWQDhpPTxGTueLhkm',
	#                            4: [   3362,
	#                                   datetime.datetime(1987, 10, 9, 22, 38, 43)]}},
	#         u'repellendus': {   3: u'EmKvtbGycMTkjADIMBdn',
	#                             4: [   2825,
	#                                    datetime.datetime(2012, 3, 21, 18, 12, 42),
	#                                    8526],
	#                             5: {   3: u'erika21@figueiredo.com',
	#                                    4: u'rodrigo79@garcia.net',
	#                                    5: [3537, Decimal('4.79640882658E+14')]}},
	#         u'repudiandae': {   0: u'ajWKSUJukDwjoDdIwkCc',
	#                             1: [   8766,
	#                                    -27561063977295.7,
	#                                    u'elxtdLKYwcSCdlQxjEjP'],
	#                             2: {   0: Decimal('-318763022494'),
	#                                    1: 5862370329003.85,
	#                                    2: [   u'denis13@torres.com',
	#                                           u'ajajkWVDBlLlIeCUIVpm']}},
	#         u'sapiente': {   6: u'https://www.nunes.com/search/categories/wp-content/homepage.jsp',
	#                          7: [   u'CeDkKEWParmyBFzmLYdX',
	#                                 8328,
	#                                 u'xZrQkLNdzBjXuJyHQWsi'],
	#                          8: {   6: datetime.datetime(1996, 4, 16, 12, 17, 1),
	#                                 7: u'KUGWnCjfTiRsrGbuxHTT',
	#                                 8: [5120, u'QXTnQSgcmPktypcXGJnc']}},
	#         u'sunt': {   9: u'santosalexandra@gmail.com',
	#                      10: [   u'QRgWSmfLcEbFWUetQpuN',
	#                              8405,
	#                              u'luissousa@gmail.com'],
	#                      11: {   9: u'emilianascimento@clix.pt',
	#                              10: u'eNryILpTeEEOYbbPQTDL',
	#                              11: [-67871496761.2, u'hmoura@hotmail.com']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'vicente47@gmail.com',
	#     datetime.datetime(1998, 12, 29, 13, 36, 55),
	#     datetime.datetime(2014, 8, 2, 16, 47, 21),
	#     datetime.datetime(1988, 1, 3, 1, 42, 45),
	#     4741,
	#     Decimal('5980.4'),
	#     7193,
	#     -74558835755870.0,
	#     u'CfcmrSEuyXtXtRvcQoKR',
	#     u'http://www.valente.com/',
	#     u'TeRfhCDmBekwmaRTGVoE',
	#     u'araujoconstanca@gmail.com']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   -5530552962.7,
	#     datetime.datetime(1998, 7, 2, 14, 55, 28),
	#     8580,
	#     u'PsTWCBDORdIVmRxQdeHU',
	#     -987.6,
	#     4685,
	#     datetime.datetime(1997, 4, 13, 14, 58, 44),
	#     u'http://amaral.org/categories/tags/index.html')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'https://domingues.com/', 8612, u'https://www.castro.net/tag/category/blog/category.htm', u'https://leal.pt/explore/categories/search/', -624.77102387095, u'YiDAWYoOjcrGBNgnOlwB', -50.0, u'olXwBpzDpBXtiWMxcZgm', 5732, u'BqfogPUDGttbFXRaZtjm', u'vhzBjFckILfbgyJhFiDZ', u'GZFoxWsejniKrpXawVNF', u'CZAylFJrAfJllthYwUIX', u'loureirovasco@pinto.com'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'deleniti': u'sPBoVBekYlDHLcVPgXpG',
	#     u'eius': u'lazevedo@hotmail.com',
	#     u'mollitia': 8927,
	#     u'quas': datetime.datetime(2015, 6, 16, 17, 49, 33),
	#     u'sapiente': Decimal('-5234700.3'),
	#     u'vero': u'http://soares.com/about.htm'}

	fake.pyint()
	# 2889

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'159-59-1908'

	fake.ein()
	# u'48-8023099'

	fake.itin()
	# u'910-96-8636'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/2017-01-31 13:48:31 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.62.(X11; Linux x86_64; lzh-TW) Presto/2.9.169 Version/12.00'

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

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

	fake.user_agent()
	# u'Opera/9.54.(X11; Linux i686; hi-IN) Presto/2.9.175 Version/12.00'

	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_10_7) AppleWebKit/5311 (KHTML, like Gecko) Chrome/47.0.832.0 Safari/5311'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; am-ET) AppleWebKit/534.2.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B116 Safari/6534.2.4'
