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

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

::

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

	fake.freguesia()
	# u'Soure'

	fake.address()
	# u'R. Nelson Campos, 404\n0588-498 Seia'

	fake.street_address()
	# u'Avenida de Ribeiro, 725'

	fake.postcode()
	# u'5091-788'

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

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

	fake.country()
	# u'Ashmore and Cartier Islands'

	fake.city_name()
	# u'Vizela'

	fake.street_prefix()
	# u'Av'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'91'

	fake.street_name()
	# u'Travessa Filipa Jesus'

	fake.city()
	# u'Reguengos de Monsaraz'

	fake.distrito()
	# u'Lisboa'

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

::

	fake.license_plate()
	# u'1MRB391'

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

::

	fake.bban()
	# 'CRZG3404274358718'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB13CNWH7158526514385'

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

::

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

	fake.ean13()
	# u'0726189566549'

	fake.ean8()
	# u'30481640'

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

::

	fake.rgb_css_color()
	# u'rgb(21,204,106)'

	fake.color_name()
	# u'DarkSeaGreen'

	fake.rgb_color()
	# u'246,34,73'

	fake.safe_hex_color()
	# u'#11aa00'

	fake.safe_color_name()
	# u'green'

	fake.hex_color()
	# u'#c76fa3'

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

::

	fake.company()
	# u'Louren\xe7o'

	fake.company_suffix()
	# u'e Filhos'

	fake.catch_phrase()
	# u'Programmable modular workforce'

	fake.bs()
	# u'reinvent best-of-breed supply-chains'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nCristiano Baptista\n3573467632639367 10/21\nCVC: 296\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'DOGE'

	fake.currency_code()
	# 'CRC'

	fake.currency_name()
	# 'Jersey pound'

	fake.cryptocurrency_name()
	# 'Feathercoin'

	fake.cryptocurrency()
	# ('LSK', 'Lisk')

	fake.currency()
	# ('IQD', 'Iraqi dinar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 6, 13, 17, 15)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 17)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1997, 2, 13, 5, 58, 21)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2018, 1, 5)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 6, 4, 18, 44)

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

	fake.day_of_week()
	# 'Sunday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 12, 11, 14, 39, 51)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2000, 12, 26, 21, 59, 37)

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

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 17, 8, 10, 5)

	fake.date_object(end_datetime=None)
	# datetime.date(1975, 11, 14)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 2, 28)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1993-10-09T16:18:38'

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

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

	fake.month()
	# '04'

	fake.year()
	# '2011'

	fake.day_of_month()
	# '23'

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

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

	fake.century()
	# u'IV'

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

	fake.time_object(end_datetime=None)
	# datetime.time(13, 29, 20)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 14, 22, 35, 48)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1995, 4, 26, 21, 29, 16)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '06:46:19'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 27, 19, 46, 18)

	fake.month_name()
	# 'May'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1109, 9, 11, 1, 41, 40)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(5522, 2424)

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

::

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

	fake.mime_type(category=None)
	# u'text/csv'

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

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

	fake.file_name(category=None, extension=None)
	# u'accusamus.odp'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'gomesmarta@sapo.pt'

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=689x909&w=689&h=909'

	fake.tld()
	# u'pt'

	fake.email(*args, **kwargs)
	# u'wmaia@clix.pt'

	fake.url(schemes=None)
	# u'http://goncalves.net/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'terms'

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

	fake.safe_email(*args, **kwargs)
	# u'catarinaabreu@example.pt'

	fake.ascii_email(*args, **kwargs)
	# 'lfaria@lopes.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'tiagocampos@silva.pt'

	fake.domain_name(*args, **kwargs)
	# u'moura.pt'

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

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

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

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

	fake.company_email(*args, **kwargs)
	# u'cpinto@valente.com'

	fake.uri()
	# u'https://www.correia.com/home/'

	fake.ipv6(network=False)
	# '45a1:ab1e:d8b0:c041:9ae:5de3:aea9:32ea'

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

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

	fake.mac_address()
	# u'89:52:5e:db:0f:a8'

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

::

	fake.isbn10(separator="-")
	# u'1-106-92705-2'

	fake.isbn13(separator="-")
	# u'978-0-594-01965-7'

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

::

	fake.job()
	# 'Investment banker, operational'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Necessitatibus excepturi voluptatibus temporibus recusandae ea. Cumque similique dicta atque repellat voluptatem. Optio sapiente aperiam mollitia deleniti quam.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Reprehenderit laboriosam quis reiciendis nemo eius facere. Deleniti delectus repellendus cumque illo temporibus odio sequi. Aspernatur hic ducimus ad.',
	#     u'Accusamus porro tenetur illum. Recusandae omnis ut rerum a. Quidem provident veniam minus.',
	#     u'Soluta voluptates cum. Tempore cum eum eligendi deserunt minus ab.']

	fake.words(nb=3, ext_word_list=None)
	# [u'exercitationem', u'voluptatem', u'dolorem']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Corrupti possimus amet ratione.',
	#     u'Libero dolor debitis fugiat.',
	#     u'Ea odit numquam minima occaecati nesciunt illo.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Voluptatibus reiciendis nobis tempora ut expedita nobis itaque. Incidunt illum sequi quasi. Occaecati reprehenderit ut expedita quidem voluptate.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Nobis omnis illo qui error blanditiis ratione.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'adPN*MsC(7'

	fake.locale()
	# u'af_ZA'

	fake.binary(length=1048576)
	# bytearray(b'\xbe\x9a\xec\xffc,\xfbu\x86\x0f\x93\x843\x91Z\x90\xca\xf4\xb7W\xed18\xdf\\?I\xf6\xc8F+\x8b\xe4\x9b\x03\x10\xea\x19$\xbfe\x92nt\xeaC\x95\xbe\x92!\xfb\x16:F\xd5\x9a\xc7\x84\t\xb1p\xb6(\x87\xfc3n\xab *\x81\xe6/\x0f\xf5\x01\xa2\xbaH\xaab\xbe\xff\xa0\xd4i\xfb\x9a\xd4l\x90\xf4\x1a\xc3\xcal7V\xa1z\xf0\xfe\r\x9b\xf5\x83\xa8Qk\xb7\x06\xc0\xd8T\x0fI\xc3\xe4\xdc\x07y\xfc\x1e,qx\x00\x9a\x81\x08\x83\x01#\xeb\'b\x148\x13\xa1/w\xdc9a"\xb7\xcbB\x01\xe0\xe1c{\x0ew@\xda\xde\x0c<\xcfm;\x0e\xb7\x04\xde\x02;Nd\xa7\xf6\x8f\xe7\xce\xe2\xaf\xb1G\n\xe5\xf8:p\x9a\x0c\x03\x7f\xaa\xf4\xdd]\x05\x9b,O\x97\xcbyZ\x81%\x9f\xa66\x90\xcd\x1b\xc2\nf\xc6\x9c\xb1\x02\xaa\x1f\xb0\xfb\xe5\xba\x1e\xb9\xf8H\xd6X\xd2\xe6\xe9\x87\x94\xb6\xc3\xbe\xb1\xa8V\x02|\x86NqM\x06`*\xf7{\x9f]\xdf]\x0b\x18\x11p\xd8;%\xa0\x95\x00M\x81\x95\xc9\x1b\xbc\x9beN\x13fB\x1f\x01\xf5\xdcr\x19\x16%\xbe\r6Wsy\xe6\xfe^\x8e\xc1K\x1b\xfa\xef7\x13Z=\x89q\n\xfa\x97\x11\xce\xc7\xbdDU\x9fw\xc2\x16\x11\x81\x90?\xeb\xde\x1c\xebO\xb6>\xb8\xfe\xb8c\xb3\x89\xc4\xbe\xdc\xb1i*5\n\xc6\xa8\t\xa8\xcc\xdf\xc7\x8fN\xa9\r\x1c\x14E\x91\xd2\x9e&\xe4\x1f\xe5\x97\x8d\x95\x9b3\x9c\x0b\xb7\xb8\x93\xd0\x85\x06!\x04\xd6G\x87\x8b\x15d\xd9\xa7\x99\xe2{5\r\xed~%\xeb\x98\x06\x94U09y3\x82R\xf0\xf6\xd7\xb6U\xae\xd1\xc3~\xd2\xe2\x82\xd7+\x84t\x83\x1cx\xe9\n%\r\x80\x9c9\xab\xcd\xfb=\x8c\xca\xca\x1e4\x8f\x96O\xda\xae\xd20\x1dE.\x17\'\x0cm\'I\xfb\x88S\x9d\r\x02\x9e7v]\x91\xd6#\xfbMFC\xea\x0cZ\x15\xc2\x0b\xb46-\xd1\xbd\xee\xe6\x0c\xa1\x03\x1a\t7\xaea\xbe>.(\x08\x87N^!\x9bHx\x84\x9c"\x00\x89;\xbf\x94)\xbeJ\x0ef\xb95i\xa3\xbd\x85\x88\x01\x83-\xb9\x93\xedZ]W\x92c\x05\xea\x15\xc4\x81\x19x-\xad\x07\xe2\x88\x92\x15iU*!\xb8[z1"o\x9c\xd4\x8co\xe0A\x0fJGeB\x11\xb7\xc85\x0b`\x81&f\xdc\xf7\xbb\xcd\x0c\xf0L\x80n\xad\xc5\x10hOb\x1eP\xb4\xdc\xcb+}\x0e\x08\xa10\xacG\xdf\x037j\xbf\xbb{\xda\xf5\x9c\xb8\xe4\xe6\x19\x0e\x02\x87\xbee\xb4\xd3\xb2c\x93\xb1N\x80\xd8z\xdb\xa1A/\xe8\x9aP\x1d\xdc\xbeW\xa6#\xc6@&if\xc0\xcf\x92\xa3~\xf8\xcd;\xa6\x0f\x98d\xbcX\x86\x1e\xf1TWNoq+%\xc5\xa9\xeeV>\xc0w\xb0\x9d\xc9{\x03\xf7\xcb\xa5\x8ev\x0e\xc1\r]\xb2\xa3\x05\xc06\x98\xa1u\xceM\xb1\xc8\xb4\x0c\x97U\xf1\xad.we\x15KS:\xefk\x1e\x0c\x1f\xb5v\x87\xc1L\x85Qr\\\x8a\xcc\xea\xbd\x86\xbd\xd4\xadLOAyX\x03\xd80]QC\xd3&\xc99\x05L\xf0\xb6\x96\xc18\xbaM\xb8R\x8dc)9\x98+\xcae\x8a\xcdd&\xc0\xdbg\x93\xdc\x8eB\xe9\xb8\x19$j\xeb\xf6\xf8\xdf3\x12\x04\x0f\x90\x94\x88\xd6\x0e\xaf4\xec\xc1K;\xde\xa7\xbb\xae8\xab\xdb)\x90g\xec\x85e\xc2l\xca\xc4\xe3\xd9\x0ep\x93\xdaGp\xb4\xdcl\xd8\x17d\xdaPM3#\xb9\xa1\xe1\xb6\xcd!\xd6<\xd2\xc1|ct\xcb\xe8\xa0&\xd5<V\xca\x9f\x886\xaf_\xe85\xb8\xaf\xd1sh\'\x0f\xab`\xcc\xd7\xf7\xf6\x1a\x14\x96\xba\xee-\xfb\x88\xf7\x107\xfbG\xb9\xda\xa7j\xbal\xb9\xa4\xe0\xc5G,m>\x87\xd5\x99\x91xcO*X[\x80\xbf\xc7\xab\x9b\x004\xc1\xc9\xe4=\xf4%\xed\x11\x98?4\x18\xde\'\x1e\xb4\x81\xb2\x1e\xff\xf1\x84.\x80TG\x16x\x94c\xa3,S\x83\xd0\xc4\xe2\x1e\xca81\x0f\x02\xdfn<\xcc\xa5\x9e\xb6\t\xbf(\x19\xbc\x0f\xe6\xf4`\x10\xa4"W#\xe1\xea\xb4*\xca\x16\r\x901\xd6\x08T\x13^Y\x84\xc3\x0f\xda\x91')

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

	fake.sha1(raw_output=False)
	# '502777e866280e4979aa74b8eaaf11497b992c75'

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'eedbc650-493f-de50-4543-0de8ae4241d8'

	fake.language_code()
	# u'ss'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Pires'

	fake.name_female()
	# u'Micael Nunes'

	fake.prefix_male()
	# u'de'

	fake.prefix()
	# u'da'

	fake.name()
	# u'Lisandro Cardoso'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Luciana Guerreiro'

	fake.first_name()
	# u'Hugo'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Eduarda'

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

	fake.last_name_female()
	# u'Borges'

	fake.last_name()
	# u'Marques'

	fake.prefix_female()
	# u'do'

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

::

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

	fake.msisdn()
	# '4509843812336'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Av Joana Ferreira, 40\n7699-240 Silves',
	#     'birthdate': datetime.date(2011, 4, 19),
	#     'mail': u'joaquimmorais@gmail.com',
	#     'name': u'Valentina Vaz',
	#     'sex': 'F',
	#     'username': u'rlopes'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Avenida Rodrigo Pinheiro, 89\n7349-750 Amadora',
	#     'birthdate': datetime.date(1910, 3, 21),
	#     'blood_group': 'B-',
	#     'company': u'Miranda',
	#     'current_location': (Decimal('-29.172040'), Decimal('-115.873386')),
	#     'job': 'Administrator, arts',
	#     'mail': u'santiagofaria@gmail.com',
	#     'name': u'Lorena Soares',
	#     'residence': u'Rua Henriques, 70\n8285-205 Seia',
	#     'sex': 'M',
	#     'ssn': u'585-99-9990',
	#     'username': u'loureirodiana',
	#     'website': [u'https://macedo.org/', u'https://www.figueiredo.net/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([97.4958096448, u'rFVGgsHFGAhrVKGBwgWy', u'https://www.almeida.pt/login/', 2344, u'YbPTuvbtjWIwIidVgpwi', 2725437591.2, u'davidamaral@clix.pt', u'NPOAdIdboRgchSmCnjcA', u'fgFKoBRTINPlvJqPBCjM', Decimal('9469703.8081'), u'AvsqcLVugDKcypYswuKA', u'SRnsHWQBAflzsulfaeTp', 6701, 703])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'NYJCBaUihLKsPIwayTtC',
	#         u'aPjjSWYfmifDhuaPlJGT',
	#         u'PJMQzWRBSbZchGNnkDlC',
	#         Decimal('32.6933191'),
	#         u'https://www.araujo.com/',
	#         u'cJvlMXPxzcOvNmoDBUoB',
	#         9898923526635.45,
	#         u'https://www.carneiro.net/',
	#         Decimal('-63.6118282'),
	#         datetime.datetime(1995, 4, 10, 7, 41, 51)],
	#     {   u'aspernatur': 3565,
	#         u'dicta': u'gWutquHVvzJluPWOhUdi',
	#         u'eligendi': u'hsbmYDOhevCOMobAznkQ',
	#         u'expedita': u'vZSRiKTNjrVxWrsavlEQ',
	#         u'facilis': 7204,
	#         u'id': u'LScsiSIxDKSfYfgpaWOR',
	#         u'inventore': 2032,
	#         u'labore': u'drwMReAOGBSvnXgMFDxX',
	#         u'laboriosam': 937795386.14,
	#         u'quasi': Decimal('-5.93515441987E+12')},
	#     {   u'cupiditate': {   0: 1626,
	#                            1: [   u'nPZZjTMGiMYEaoBZDmNK',
	#                                   u'KMTKvhXJCeRIlzGmulQh',
	#                                   Decimal('509109.2357')],
	#                            2: {   0: datetime.datetime(2017, 12, 5, 6, 54, 44),
	#                                   1: 1.326976,
	#                                   2: [1907, u'pXawUAJxHQnxjTfVJCUv']}},
	#         u'deserunt': {   1: u'pJBTqtWdBnOgMOYbkXrx',
	#                          2: [   u'http://teixeira.org/about.php',
	#                                 datetime.datetime(1971, 11, 28, 20, 18, 34),
	#                                 1241],
	#                          3: {   1: u'eUQGtqoIArYHtBVWhVsP',
	#                                 2: u'kyaralima@pinheiro.pt',
	#                                 3: [   u'ycIqinRqHmtSlCerIwnT',
	#                                        u'NPaAySWnwFEfbgrePKAI']}},
	#         u'eius': {   3: u'DslnSnNUZdLAnkkluhJW',
	#                      4: [   u'akJTrngZSoNmiXrxNYDs',
	#                             u'eznuYpjwhKccFBapRqkb',
	#                             u'omIpOMlXBVZQuPYuTAgc'],
	#                      5: {   3: u'http://www.silva.com/posts/categories/index.htm',
	#                             4: Decimal('-4004.29721128'),
	#                             5: [-113946107.148, u'qkkSEADQdwpDNueYBNJr']}},
	#         u'laborum': {   2: u'dianamartins@batista.com',
	#                         3: [   u'oliveiramarcio@clix.pt',
	#                                Decimal('69809959.5'),
	#                                6306],
	#                         4: {   2: u'ixuGseETDRnXXVqQxxHC',
	#                                3: u'FjHhcgCTRTuwWtRqHYLq',
	#                                4: [   u'https://castro.pt/about/',
	#                                       u'QgaxztUpuHTEFObatFFc']}},
	#         u'laudantium': {   8: u'http://torres.pt/posts/app/search.html',
	#                            9: [   u'XdsqbhqVFEKlrXTEjvKy',
	#                                   u'XLiymPziZwHXsRSPoQus',
	#                                   -735769541869.7],
	#                            10: {   8: u'https://www.paiva.pt/wp-content/search/tags/category/',
	#                                    9: 6293075353.9317,
	#                                    10: [   u'ysoares@sapo.pt',
	#                                            u'wafQLtuYWIymZWcxzWSi']}},
	#         u'libero': {   4: 9497,
	#                        5: [   u'https://leal.pt/category/',
	#                               datetime.datetime(2013, 12, 8, 19, 43, 44),
	#                               5454020081986.1],
	#                        6: {   4: u'rYiwUEieSoNwmWkHKbpK',
	#                               5: Decimal('166343490.0'),
	#                               6: [6313, u'larapacheco@hotmail.com']}},
	#         u'nihil': {   9: 86205902392895.0,
	#                       10: [   u'rgZauccoLNFTUPoHppsN',
	#                               u'LPsVUoHdsnYwVcwNXgmj',
	#                               u'RKejhqsxkAidhvTompgM'],
	#                       11: {   9: Decimal('-494366.3745'),
	#                               10: u'FVedBJMjzEVQmqCUarne',
	#                               11: [   3396851557915.0,
	#                                       u'rQtEsMcYDzfMihFNRdna']}},
	#         u'quas': {   7: datetime.datetime(1975, 1, 22, 7, 30, 55),
	#                      8: [Decimal('-1.24'), u'MIVbiEMeckkjlJmzyczI', 2813],
	#                      9: {   7: datetime.datetime(1978, 6, 23, 23, 55, 52),
	#                             8: 9065,
	#                             9: [   u'RueslZlfObNxYuKqDVBs',
	#                                    u'diego72@gmail.com']}},
	#         u'quisquam': {   6: u'ByOHsTNZKXGBXJJmQdWH',
	#                          7: [   u'LIpkoQeXUXvcySFoCCTH',
	#                                 datetime.datetime(1970, 5, 13, 5, 9, 25),
	#                                 4732],
	#                          8: {   6: 6960,
	#                                 7: u'oJpNSBYsqDWFkALCNCOY',
	#                                 8: [   2168,
	#                                        u'https://www.garcia.com/tag/home.jsp']}},
	#         u'repellendus': {   5: u'vicentedebora@vaz.org',
	#                             6: [   datetime.datetime(2006, 2, 5, 2, 26, 39),
	#                                    u'http://matias.org/',
	#                                    datetime.datetime(1979, 1, 4, 22, 15, 8)],
	#                             7: {   5: 2161,
	#                                    6: u'lUmoSgrepuBFtbOheUqk',
	#                                    7: [   u'XcxwuWlEPsDsOYHjjFNA',
	#                                           Decimal('50298.8609261')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   -820464.0,
	#     7639,
	#     u'gmvjriprlmrEvdXOhXFE',
	#     9958,
	#     u'veragomes@sapo.pt',
	#     6730,
	#     datetime.datetime(2016, 5, 1, 8, 30, 15),
	#     u'vWotEXwOAusvAUsEZGSQ',
	#     datetime.datetime(1994, 1, 21, 2, 2, 54),
	#     Decimal('-5.77407560765E+12'),
	#     u'uYIzLpnyAaAhMySFNUjl',
	#     7116,
	#     5716865895.2689,
	#     u'FwhVmUMvZWbjVHqCkijS']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   9987,
	#     Decimal('-5.7180892725E+11'),
	#     u'https://www.lopes.org/list/tag/app/terms.jsp',
	#     u'yogPotlaSUiTZtQdlPkW',
	#     u'VaXfgCshJmstUXiWsokr',
	#     datetime.datetime(1974, 1, 16, 7, 52, 43),
	#     9244)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([5920, u'beneditaferreira@gmail.com', u'jescWABNOgIEMzhzydeZ', u'UVnpdbthnPvQUlqgctKm', Decimal('-893547619494'), 3437, 411111346605.55, 4498, datetime.datetime(1976, 3, 22, 18, 24, 41), -248185872.781, 7803, u'https://batista.net/main/wp-content/posts/home/', u'FNRKXQVOoJZicAntAPzC'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquid': u'alicegoncalves@hotmail.com',
	#     u'cum': u'http://oliveira.pt/login.jsp',
	#     u'ea': u'URXkFFneLgvHzLXUkXcM',
	#     u'modi': u'AWRaJaVzeJnHlKQQJWrI',
	#     u'nesciunt': u'mLjsNbKXROPbxWWFIccc',
	#     u'possimus': 295959062271.77,
	#     u'veniam': Decimal('939249042.987')}

	fake.pyint()
	# 1436

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'504-20-2848'

	fake.ein()
	# u'30-6863797'

	fake.itin()
	# u'947-98-8947'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/2016-06-14 09:24:05 Firefox/5.0'

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

	fake.opera()
	# u'Opera/9.99.(Windows NT 6.0; ve-ZA) Presto/2.9.188 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/61.0.848.0 Safari/5342'

	fake.linux_processor()
	# u'x86_64'

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

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; crh-UA) AppleWebKit/531.16.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B116 Safari/6531.16.7'
