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

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

::

	fake.latitude()
	# Decimal('39.634573')

	fake.freguesia()
	# u'Castro Daire'

	fake.address()
	# u'Rua de Pires, 36\n0864-272 Caldas da Rainha'

	fake.street_address()
	# u'Rua Emma Paiva, S/N'

	fake.postcode()
	# u'6933-493'

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

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

	fake.country()
	# u'Ant\xe1rctida'

	fake.city_name()
	# u'Marco de Canaveses'

	fake.street_prefix()
	# u'Largo'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'523'

	fake.street_name()
	# u'R. Pires'

	fake.city()
	# u'Cani\xe7o'

	fake.distrito()
	# u'\xc9vora'

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

::

	fake.license_plate()
	# u'8-77742Z'

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

::

	fake.bban()
	# 'CNZT6494285342818'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB59FZFB9129972620992'

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

::

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

	fake.ean13()
	# u'6723539321135'

	fake.ean8()
	# u'08250735'

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

::

	fake.rgb_css_color()
	# u'rgb(150,165,36)'

	fake.color_name()
	# u'SlateBlue'

	fake.rgb_color()
	# u'203,112,115'

	fake.safe_hex_color()
	# u'#cc9900'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#6a5dda'

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

::

	fake.company()
	# u'Moreira Almeida S/A'

	fake.company_suffix()
	# u'S/A'

	fake.catch_phrase()
	# u'Pre-emptive optimizing Local Area Network'

	fake.bs()
	# u'optimize cutting-edge architectures'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Discover'

	fake.credit_card_full(card_type=None)
	# u'Maestro\nConstan\xe7a Assun\xe7\xe3o\n676364930914 01/23\nCVV: 186\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'MZC'

	fake.currency_code()
	# 'XAF'

	fake.currency_name()
	# 'Russian ruble'

	fake.cryptocurrency_name()
	# 'Bitcoin Cash'

	fake.cryptocurrency()
	# ('VTC', 'Vertcoin')

	fake.currency()
	# ('AOA', 'Angolan kwanza')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 10, 1, 8, 20)

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

	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(2011, 4, 13, 3, 16, 8)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 1, 14)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 8, 15, 56, 55)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 6, 2, 11, 50, 19)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 10, 23, 23, 23, 37)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1991, 9, 8)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2012-11-17T02:13:00'

	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(2013, 3, 8)

	fake.month()
	# '11'

	fake.year()
	# '1983'

	fake.day_of_month()
	# '16'

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

	fake.timezone()
	# u'America/Nassau'

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1955, 3, 18)

	fake.time_object(end_datetime=None)
	# datetime.time(4, 19, 21)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 11, 8, 13, 29)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2006, 8, 8, 18, 58, 24)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 13, 4, 9, 39)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(446, 6, 13, 19, 56, 21)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(6999, 8354)

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

::

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

	fake.mime_type(category=None)
	# u'video/webm'

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

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

	fake.file_name(category=None, extension=None)
	# u'assumenda.mp4'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'nelsonmorais@clix.pt'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'guerreirosamuel@cunha.org'

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

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'homepage'

	fake.free_email_domain(*args, **kwargs)
	# u'clix.pt'

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

	fake.ascii_email(*args, **kwargs)
	# 'udomingues@martins.pt'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'lealtatiana@amorim.net'

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

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

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

	fake.slug(*args, **kwargs)
	# u'alias-quibusdam'

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

	fake.company_email(*args, **kwargs)
	# u'barrosgil@castro.com'

	fake.uri()
	# u'https://neves.com/faq/'

	fake.ipv6(network=False)
	# '6a3f:f1d0:e619:7b0b:218:4a0a:16a6:5d4e'

	fake.free_email(*args, **kwargs)
	# u'ericabarbosa@gmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'andradeisabela@example.pt'

	fake.mac_address()
	# u'a2:9e:85:e9:69:c2'

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

::

	fake.isbn10(separator="-")
	# u'1-9846-3743-6'

	fake.isbn13(separator="-")
	# u'978-1-365-50299-6'

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

::

	fake.job()
	# 'Youth worker'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Voluptates cupiditate atque rem sed fugit. Veniam occaecati delectus hic eius possimus. Eos a doloribus blanditiis magni. Iste fugit eius praesentium dolores.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Provident at similique repellat provident a. Unde at neque.',
	#     u'Possimus est quos soluta inventore. Nostrum modi ab asperiores a distinctio occaecati dolorem. Atque minus nobis eveniet a nobis. Temporibus aliquam eius dolorem animi ratione laudantium.',
	#     u'Dolorum doloribus consectetur deleniti. Unde ea similique quaerat ea minus ipsum impedit.']

	fake.words(nb=3, ext_word_list=None)
	# [u'culpa', u'quos', u'reprehenderit']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Voluptas molestiae ad dolore blanditiis.',
	#     u'Quibusdam dolores vel.',
	#     u'Excepturi facere aliquam sequi laboriosam eos.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Aliquam nostrum placeat mollitia nulla. Deserunt doloribus ullam ex non. Dignissimos modi suscipit pariatur saepe fugiat.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Eaque est at molestias possimus molestiae.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'7lZ30yJo&B'

	fake.locale()
	# u'sd_PK'

	fake.binary(length=1048576)
	# bytearray(b'\x87,\xc6\xe1\xfa\x1e\x01\x0bX\x86G\x8d\xc5\xec~9\xe6\xc5\xfa0\xe5^\xfa\x00\xe2\xc3\xdd\xc0\x0fD\n[\xc9\xe2\x80\x94\x00\xa5i\x9e\xc3C\x0e\xac\x14\xc4.=\xc8$\xb0D|\xcct\xa0\t\x0eL}U\xe8\x9ba\x9dT\xc4d\xcb\xeb\xab\xef\xd5\xaa\x10\x93\xba\xa1\xa8>?\xd2\x1a1\x98\xa5\xfa}s\xfd\xed\x9f#\x14\xcd\xc3\x08\xc3*\x95V\xdf@\xac\xd2g+Z\xdfPA\xdf\xec\xf6*`\xb3\xcf\xc1\xbd\xe9\x1b\xd1\x7f\xab\xf8\xa4?3\xda\xefb\xa0Q\xd5\xe5\xef)\xeb\xc4w\x9f\x0c\xc1\x07\\V\xa33\x85\xf8\xf5\xf32.F\x01\xd3\xd5A\x8cLI\xab\xac\x87\xed\xe1\x88b\xe5&\x87(\xe8\xfa\xad\xef\xd2\xbc\x87A\x1e\x0b\x0e\xe0\x99\xf48\xc5\x0b\xde5\xba\x9e\x19\xb1L\xcba\xd0\x8c(\xc4j\xa7t\xf5\xa4/h\x8d\xdf\x87\x91\xdc\x10kt\x07\x922,Y\x9aH\xffP\xb1\x02NO\xfe\xb8 \xc2e\xc1\x80\x8d\xefA\xee\x82\xe5P\xfar\xf4(\x8e\x0f\x88\x13\xe5&Wrz)"\x99\xde\xf2}\xed|Y6*#\x94\xa7y\xe9\xc7\x98E\xe3+\xe6o\x92\xc1\x9f\r\xdf\xeb~\xeb\xcb\xca\x98_1c*\xf6\xe2\xd5~\xc5|\x8c\xe8E\xfd\xb2\xadF<\xf2\xc2\x0c\x8bJ\x8e\xd4\xdc\xfb\xda\x81\xc3\xd9\xe7\xfd\x8d\xa6\x18\xcc^\xa3\xf85>\xb5|\xfd\x88\xe6\xf7?\xfa\x10\x0eD[/:O\xad\x16\x14\x16\xe5\xb3\xd2\xe7\xe5\x1a\xf2^\xe3\xdb\xc0\xcb\xd4\xed\xf1\xbb\x89t>_\xcf\xddg\xbc\xa1\xda\xb5\xc7\xf9\xd2j\xf4cg^\x84I\x15Z\xe7\x85\x93z\xbc\xf0h3\xdd*\x8e\x07\x17y\x9f\xa9\xa1d5\xc8\x83;\x85\x90WT&\xae\xc3~\xb9\xc1\x93\xec\x0c\x12\x93\xf6s\xc9;fr\xbf\x0f\xc9\xba%\xb4Jx\x7f\xc1sFe\x04\xbe\x83\xfe\\\xe4i\xe6k\x1d\x91\x1f*\xf0\xce\xfd\x9a\xdb\xdf\x07\x11\x85{\xd1\xf2f\rv9#B\xe2\x04\x94\x81Zd\x98\x8d)\xf2h!i\xec\xe5\x1e)2m\xd9\xbb_\xbcJ\x0c\xde\xd7C\xcf3\xc5V.;\xc0k\xf0*\x0c\xc6\xee&,lU\x9c.\x82\xa2\x1a\xba80\x85*\xae\xb6\'\x81\\\'\x87\x8d+z\xb8%\xbe$[\xd0\xf7\xe5\xa75\xc4x\xa2\x0e-?U\x82\xdeV//\x12\xeb\xf1\xe40eN^r5\xd4\xa7\x99R\xbb\r\x03\x02\xd1B1\x99g-b\x1d\xb1\x8a^y\xcd\xa9O|\x96\xf2\x15\x84\xb6B\x8c\xa9\x8a\x8f\x14\x88\xa0\xdb$\xaeX>\xa7\xee\xef\x05\xad\xdc\xfb:C\x16\xa8:\x00\xe3\xcd]\x16b\xd2\xf2\xa1\xe3D$\xfc\x03\xf8\x06\xf5\xf6E%\x85\xc3\xec\xeb\xfa\\\x03+\r\xc9Z\xbe\xb4\x0f\x82|c\xe0\x1bL\xbf\x857#\xd1<\xd8\xad\xaeOER\x9cDx\x8f\x8d\x180\x85\xc2tz\xd5P\xa5\xf1\x12\x00\xbe\xa2\x82\x92cz.\xb7<\x9cgN\x7f\xcb\xea\x8dV\x9d\xb8\xbd/B\xed\xfe\xcd\x95\x817\xc4|\x06<n\xcb\xae\x98<MO\xfd\xc3\xc5d6\xe9\xb0\x8a9J\xab\x8e\xb2\xbd\xe9\x11\xa4\xbcx\x90\xda\x06\x17V6\xa3\x12$nM\x99\xedV\\n\xba.6\xd6\xf9H\xa0j\xc3\x04\x91a5\x00\x9b#\xeaID\xbb\xe0\xfbz\x9a~]\xe0\x996\x82\x88\x8b\xb4N\xbc\xc5\x81\x94\x92\xa8!\x81\xc2[\x08\xe8\xe5sS\x1di\xf3\xb7\n\x13\x94e\x02\x02A|\xf6\x84\x95\'\xc2\x94wHR\x06pQ\x90\xed\x07\xe8\x8e\x85d\xc2\xc9~}\xdb*1<\r\x8e0C\x0f\xee&E\xb9\xde\x9c\xf9@\x10\xc2\xee9\xf3Z\x85,\x8c\x9a\x13\x04\x95\x8cOE\xb5\xf1e\x89v\xcb\x87\xb0\xae\xb7\xd2t\xb2\xact\xb4j\xbaf\xa3\xb5!\xd45\xf6_\x1b\x81p\nJ\xb8t\nE\x16\xe6\xd9IZb\xb5\r\xa3jdz~\xc9\x9a\x89\x024\x17\x03!2K=\xc3\x83q\xa1\x8eP\xf0\xad\xdf\xc7\x08\x03y+\x1d\x8b]C\xa70\xac;\xf2\xdbs\xec\xf9\xebQ\xd5\xa2\xa8\x9c^I\xdc&N(\x1c\x1d\x93\xdd\x97(v\x1d\xa8Oc\x01Q[H5\x9f\xc41\xb7P\x9f\xdb\xe1\xb13\x13\xa8\xd4{\xe4-"\x04j')

	fake.md5(raw_output=False)
	# '7ce25c8e48509855edfde6c610291d20'

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

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'ccbe5015-0eef-ce3f-48a5-374093658f69'

	fake.language_code()
	# u'ml'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Cruz'

	fake.name_female()
	# u'Edgar Moura'

	fake.prefix_male()
	# u'da'

	fake.prefix()
	# u'do'

	fake.name()
	# u'Salom\xe9-Nair Pereira'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Laura Figueiredo'

	fake.first_name()
	# u'Ant\xf3nio'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Valentina'

	fake.first_name_female()
	# u'Maria'

	fake.last_name_female()
	# u'Ara\xfajo'

	fake.last_name()
	# u'Vaz'

	fake.prefix_female()
	# u'da'

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

::

	fake.phone_number()
	# u'(351) 916245374'

	fake.msisdn()
	# '5179391975190'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Largo de Neto, 560\n3214-809 Montijo',
	#     'birthdate': datetime.date(1961, 7, 23),
	#     'mail': u'iamorim@sapo.pt',
	#     'name': u'Micael Vaz',
	#     'sex': 'F',
	#     'username': u'moreiralorena'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Av Borges, 25\n2505-545 Loures',
	#     'birthdate': datetime.date(2003, 8, 6),
	#     'blood_group': 'B+',
	#     'company': u'Nogueira e Filhos',
	#     'current_location': (Decimal('34.298033'), Decimal('3.862698')),
	#     'job': 'Land/geomatics surveyor',
	#     'mail': u'eduardo48@sapo.pt',
	#     'name': u'Mara-Fernando Gomes',
	#     'residence': u'Avenida Mara Amorim, 51\n8648-365 Angra do Hero\xedsmo',
	#     'sex': 'M',
	#     'ssn': u'519-82-1222',
	#     'username': u'mmota',
	#     'website': [u'https://www.sousa.com/', u'http://paiva.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'gLFAJmxdXmjDJXWVWFOL', 6625, u'BPrXtnKAtqkyFbojdioH', u'carminho11@goncalves.com', 4497, u'violetavieira@lourenco.pt', datetime.datetime(1999, 10, 21, 2, 37, 56)])

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

	fake.pystruct(count=10, *value_types)
	# (   [   91,
	#         datetime.datetime(1985, 9, 4, 18, 22, 48),
	#         datetime.datetime(2004, 7, 22, 4, 59, 33),
	#         452232.0,
	#         datetime.datetime(1977, 9, 21, 12, 38, 39),
	#         u'vSCNFnujoJVKFRMKfitT',
	#         u'WnxSUEKlaXEBhflSgUov',
	#         u'ymDtERKJnewuhNMOYLxS',
	#         datetime.datetime(2017, 6, 30, 21, 58, 50),
	#         6108372122604.39],
	#     {   u'alias': u'diegogoncalves@clix.pt',
	#         u'excepturi': -68577.7,
	#         u'expedita': 3354,
	#         u'illum': u'ZCiBKArGVhUzZQKhglLq',
	#         u'incidunt': u'isabelaanjos@gmail.com',
	#         u'iure': u'isabelasousa@clix.pt',
	#         u'maxime': u'NFygpVQbzsTFwCTgKlTQ',
	#         u'quibusdam': 946134408.0,
	#         u'soluta': u'fxFdhoETUpxnahebxNea',
	#         u'voluptatibus': 9424},
	#     {   u'accusamus': {   3: u'http://www.baptista.pt/category/tag/main/register/',
	#                           4: [   u'http://www.simoes.net/app/wp-content/categories/index/',
	#                                  Decimal('167326047.0'),
	#                                  u'COyJFFpxEXujIhFhNwfn'],
	#                           5: {   3: u'MmRUHNTsxDEUpesgNsZx',
	#                                  4: u'ineto@clix.pt',
	#                                  5: [   -934746816281.8,
	#                                         datetime.datetime(2002, 1, 3, 0, 47, 49)]}},
	#         u'aliquam': {   0: u'bCsgsoIRMIuZyzGsjxnS',
	#                         1: [9147, Decimal('-7582737.43878'), 2728.6475819],
	#                         2: {   0: u'ShKqxTgkTgdMPVBLFTSs',
	#                                1: u'figueiredoalice@maia.com',
	#                                2: [u'pEvrDuifbEkjvUgWliGa', 8067551.8]}},
	#         u'consequuntur': {   6: u'zgChFpTwWNJfDBtbjmLz',
	#                              7: [   Decimal('252852914.66'),
	#                                     u'QoQCSMFDxezmcUbVXXEg',
	#                                     u'HtMyUiKOQAWNUTxhyaKr'],
	#                              8: {   6: u'odvqjoGyaXWjdaNoKhYf',
	#                                     7: u'gNxkdxiKKuBlyFjkZmSF',
	#                                     8: [   -301114388605265.0,
	#                                            u'http://www.silva.org/register/']}},
	#         u'doloribus': {   5: u'MlEdvdvByOXbDdYlTehv',
	#                           6: [   u'ZHBFyoASYEOhmhcpYvce',
	#                                  datetime.datetime(2013, 2, 4, 10, 22, 11),
	#                                  u'ZRMqxwzIHZjjJQMMwqVt'],
	#                           7: {   5: 4462,
	#                                  6: 5636840.898,
	#                                  7: [3900, u'HcvVLeaOWFJMptexVILL']}},
	#         u'fugiat': {   8: u'DRdkExtoZtJuKazHoAXZ',
	#                        9: [   93916244.82267,
	#                               Decimal('2519313796.96'),
	#                               u'TYZIixnGspjYjpZrmCxm'],
	#                        10: {   8: datetime.datetime(1978, 2, 11, 8, 40, 2),
	#                                9: u'OOBMVDMNnHpUBspAQqve',
	#                                10: [   datetime.datetime(2001, 10, 16, 7, 5, 25),
	#                                        8467]}},
	#         u'harum': {   4: u'CcpeZCFnrPilYqrYvUlO',
	#                       5: [   u'kPJVWWznxoGDqBaUmVGF',
	#                              u'https://www.coelho.com/home.htm',
	#                              u'ehFTCYvyqhfJDENzjhMq'],
	#                       6: {   4: u'aAlyaxtpNHwPUOlKxhBP',
	#                              5: 1172,
	#                              6: [   u'CVfpIIEhAbmxPLGQoYic',
	#                                     u'NlzTISMBLlDvhQQMXoXq']}},
	#         u'laborum': {   2: u'https://www.esteves.pt/',
	#                         3: [   u'OlZKxLVujJpvwyGvhcwW',
	#                                820,
	#                                Decimal('521758891.117')],
	#                         4: {   2: u'eQsSSGSHKmAPEQVuypSF',
	#                                3: u'NxqdnMiWfFnbeXPDYgOv',
	#                                4: [9150, u'jHKtIYScFTwoiNLJqVPH']}},
	#         u'odio': {   9: u'TKzGyuKXoMfzsscDxQnC',
	#                      10: [   u'lqAoPzIOWdIrONShuhMP',
	#                              u'cYyaJdreIlWBGuuqLJWP',
	#                              u'dIPKXfEIjuJJSwGJtWGd'],
	#                      11: {   9: u'http://www.baptista.pt/explore/categories/wp-content/author/',
	#                              10: 75278767604.14,
	#                              11: [   u'cSxYiYYyRjPWvVDnlFiI',
	#                                      u'torresleandro@silva.pt']}},
	#         u'perferendis': {   1: 706,
	#                             2: [   u'xicGntdLpJpZcHfvwEqA',
	#                                    Decimal('214792.91'),
	#                                    4165],
	#                             3: {   1: u'MGZbEELeiHLkMEWhaIdU',
	#                                    2: Decimal('-12542.4932093'),
	#                                    3: [u'VSzQyoAstCpNgtfFBfqs', 8423]}},
	#         u'quam': {   7: 2326,
	#                      8: [   u'mohuyFCTRJepKLeTmPkB',
	#                             1060,
	#                             u'CFbYjSHqnRmzhAIQmJDN'],
	#                      9: {   7: u'XdfJCUZnCoadGzbAsmUl',
	#                             8: u'https://www.moura.com/login.php',
	#                             9: [   u'ABObJDGYRtoLCoQsyuFa',
	#                                    u'tomasreis@sapo.pt']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'zdiuejiBxzeUORBEQNLf',
	#     u'leonormoreira@sapo.pt',
	#     1777,
	#     u'https://www.barros.org/login/',
	#     datetime.datetime(1987, 7, 7, 7, 2, 40),
	#     6175]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'NmommPAcqakeMPnCMMvg',
	#     u'nqFaMlYGTsOABPyTNTie',
	#     datetime.datetime(1988, 5, 23, 4, 4, 29),
	#     u'https://www.vaz.com/login/',
	#     datetime.datetime(2008, 12, 18, 21, 29, 7),
	#     u'ramosluna@tavares.com',
	#     u'NUjpZAUqEMKpRyfCQcnj',
	#     u'http://magalhaes.com/category/tag/tags/main/',
	#     u'http://correia.org/search/list/home/',
	#     u'http://fernandes.pt/',
	#     -9.64025,
	#     u'AKPyizKtoEjTRQceOqeB')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([6368, -1.91923108, u'https://www.amorim.net/home/', -6474245431158.94, u'rrbdmzQnakRUIKrCtzLj', u'http://www.azevedo.pt/explore/main/', u'lsousa@clix.pt', datetime.datetime(2017, 3, 28, 18, 50, 37), u'hferreira@sapo.pt', u'BpGfWpUxoaZWlkizvdXW', u'https://pinho.pt/index.php'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'atque': u'UWcePkxxAHqBcidsZXDq',
	#     u'blanditiis': u'http://sa.pt/list/index.html',
	#     u'eveniet': 6548,
	#     u'hic': u'tiago93@carvalho.com',
	#     u'necessitatibus': u'rKnhBHSEclCtXBpmlJOE',
	#     u'nihil': u'CdIWQjWYJcQbugVGYgdQ',
	#     u'quibusdam': u'mrKdzezfJnYIdjeMhbzQ',
	#     u'rem': -89879.487085,
	#     u'totam': u'lPtBqcjMHyPBILOXrzdL',
	#     u'voluptates': u'zZNCmDfNUhbbokjnRWqG'}

	fake.pyint()
	# 4604

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'452-09-9220'

	fake.ein()
	# u'03-5863454'

	fake.itin()
	# u'954-87-2306'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows 95; hi-IN; rv:1.9.0.20) Gecko/2018-03-10 04:28:23 Firefox/3.6.17'

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

	fake.opera()
	# u'Opera/9.33.(X11; Linux x86_64; gv-GB) Presto/2.9.163 Version/12.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.0; Trident/4.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5330 (KHTML, like Gecko) Chrome/24.0.830.0 Safari/5330'

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

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

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