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

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

::

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

	fake.freguesia()
	# u'Castro Verde'

	fake.address()
	# u'Travessa Campos, 98\n1623-464 Viseu'

	fake.street_address()
	# u'Av de Amorim, 19'

	fake.postcode()
	# u'2296-163'

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

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

	fake.country()
	# u'Usbequist\xe3o'

	fake.city_name()
	# u'Almada'

	fake.street_prefix()
	# u'Rua'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'46'

	fake.street_name()
	# u'Largo de Andrade'

	fake.city()
	# u'Loul\xe9'

	fake.distrito()
	# u'Guarda'

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

::

	fake.license_plate()
	# u'MGH 005'

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

::

	fake.bban()
	# 'OWBH0606898241110'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB29ZAFG1841630581982'

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

::

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

	fake.ean13()
	# u'0147217976909'

	fake.ean8()
	# u'04226833'

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

::

	fake.rgb_css_color()
	# u'rgb(164,76,34)'

	fake.color_name()
	# u'CadetBlue'

	fake.rgb_color()
	# u'21,46,27'

	fake.safe_hex_color()
	# u'#999900'

	fake.safe_color_name()
	# u'blue'

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

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

::

	fake.company()
	# u'Barbosa Carvalho S/A'

	fake.company_suffix()
	# u'e Filhos'

	fake.catch_phrase()
	# u'Networked dedicated circuit'

	fake.bs()
	# u'embrace back-end e-commerce'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Maestro\nBrian Sousa\n503894608036 04/22\nCVV: 263\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NEM'

	fake.currency_code()
	# 'ZMW'

	fake.currency_name()
	# 'Icelandic kr\xc3\xb3na'

	fake.cryptocurrency_name()
	# 'Dash'

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

	fake.currency()
	# ('KHR', 'Cambodian riel')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 29, 6, 20, 49)

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

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

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2004, 10, 10, 16, 39, 15)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2016, 4, 10)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 3, 1, 3, 4)

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

	fake.day_of_week()
	# 'Sunday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 4, 19, 9, 38, 40)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2013, 11, 19)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2003, 9, 8, 23, 37, 24)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2014-03-24'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1985, 7, 6)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 6, 13)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1975-07-17T22:46:39'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2017, 10, 24)

	fake.month()
	# '02'

	fake.year()
	# '1998'

	fake.day_of_month()
	# '27'

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

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

	fake.century()
	# u'VIII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(5, 17, 18)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 7, 8, 1, 28, 22)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1999, 9, 14, 19, 9, 17)

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

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

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

	fake.month_name()
	# 'March'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(557, 9, 9, 22, 20, 11)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(9345, 19618)

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

::

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

	fake.mime_type(category=None)
	# u'multipart/form-data'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/quae/ratione.mp4'

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

	fake.file_name(category=None, extension=None)
	# u'suscipit.pdf'

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

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

::

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

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

	fake.tld()
	# u'net'

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

	fake.url(schemes=None)
	# u'http://paiva.pt/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'index'

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

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

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

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'pilarmelo@machado.pt'

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

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

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

	fake.slug(*args, **kwargs)
	# u'pariatur-explicabo'

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

	fake.company_email(*args, **kwargs)
	# u'william79@coelho.net'

	fake.uri()
	# u'https://www.guerreiro.net/homepage/'

	fake.ipv6(network=False)
	# '3fa5:7cd7:fa60:93e1:7db7:7eb4:9e63:a46'

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

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

	fake.mac_address()
	# u'e1:e7:4d:e5:19:3f'

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

::

	fake.isbn10(separator="-")
	# u'1-70438-091-X'

	fake.isbn13(separator="-")
	# u'978-0-9850104-4-7'

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

::

	fake.job()
	# 'Orthoptist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Nam repellat sunt aspernatur magni voluptates. Praesentium minima placeat ea nesciunt provident accusamus. Inventore amet dicta voluptate velit voluptatum eveniet neque.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Molestias eveniet eius aut nemo. Natus deserunt numquam rem. Porro beatae est optio officia. Saepe dignissimos dicta rem modi modi.',
	#     u'Eveniet accusantium beatae sint quasi assumenda. Velit dolore odit nam.',
	#     u'Ipsum amet omnis voluptas vero at. Necessitatibus repudiandae quam iusto sed consequatur. Odio consequuntur atque eius atque.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Perferendis dolor quas at.',
	#     u'Maiores pariatur dolor consequuntur.',
	#     u'Quis ipsum recusandae minus maiores ut aliquid.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Animi laudantium quaerat odio. Ex repudiandae dolores consequatur fugit voluptatibus.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Dolorum soluta voluptate odit praesentium repellendus et.'

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

::

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

	fake.locale()
	# u'nn_NO'

	fake.binary(length=1048576)
	# bytearray(b'\xab\xea\x02B\xde\xabwfd\xd7\x80/A\xdd}\xa6\xd34T\xd5xL\xd1C\xf9\x1b\xd4\xdd\x1b\xe70|\xd9\xc83\xae\xc7\xe6\xd1O\xa4\xf3=\xa3\x07:\xd3Dc\x8a\xdd\xad\x90\\\xa5\xad\xa3\xe1\xc6 \xf3\xb6k\x8cZ\xdd\xe5\xbe\xb0uG[\xc3\xac\xfd)\xdc\xa2\xb0\xfcw\x85\xe12B\xb5d\x1dP\xbe\xa4\xd5\x8d\x05W\xd2\xa3@\xd8\xb4\xf81\x83\'\xc0\xfb\x9fO\x0bV,o\x8e\xf2d\\5\xe87+\xb9\xfd\xa6\x1a\xfe\x9e\xcf\xc9G\xa4ib\xb2E)%3^f*\xdfWb#\xcf}\xf3B\xb3\xb7\xfb\xac[Y\x95\xdc\xbcLi>HSF\x83_\xc2\x84\xec|\xde\x0f\x9ab\xde\xa9{P*+2\x07\xcaB\x01\xd5\x01\xc8\x04z\x97r\xf4\x89\x01(\x1f\xff&\x86<\xf9\x8c\xfdPY\xa8\x90\xc0\xdc\xc9J\x99\x05\xd0o\xe0\xf9\x94kp\x88`7\x0e\x02-\xd6\x99\x8a\xc9\xd3D&\xcb1:\xf9\xfb\xebh\xc4\\\x13\xb3\xf7w\xc5\xbb\x8e\x1a\xe4\tG\x89%8\x1c\x99\xbdQ\x80\x97,"\x98\x12|\xe5\xdb\x88\xa6,2\xd7?\xfd\x1f4\xd0\x82\xe3\xf2\x1c\xd4\xa3?H%B\x89\xa2\xea\xf32.V\xd9\xbf\xd1NfXvm\xec\xcf\x90\x15\t\xa9&\xe4\xdd\xaf\xaf\x7f$.\xf0P>\x8fQ\xbb\xc8V\xf0\xa1c\xb0\x8a}\x94\x9b\xe9lsC \xa9$\x97b9\xc2\xa6\x96\xa1\xb5\xa1\xdf\xef\xf9\x96>\xd4=\x1aQ\xf4\x18\xb5\xeb\xb0M\x95 l{\xdc\x7f\xc5P/\x05\x04\x82}_\xeeT\xd9\xcd3\xc7\xe1\xed~V\x1b<\xa2B]\xf7l\xc4M\xa6\x00\\\xd8Z\x9cQ\xc4\xbe\x9aM[L\x91\x14\xb8\x9fq\xa5\xfd0\xf1\x139\xf1\x99L\xdeb\xe1b7\x13\xbfQ.\x04\x89\x80"\xaa\xdf*=\xb3\t=\x06 \x12\xcc\xb2\x84H.i\xdd\xae2\xfb\xcf\xaf\xee\xcc\xdbXq\x18E\x18\xd5tP5\xcec\xf1\x80y\xa6\xae\x97\xc9$^\x9c\x1c\xa4H\xad\xbf\xce\x01m\x9cc\xd1$L\xeb\xf0d\xd1R\x9f\xd8<\xcfX\xa5\x80\xbb\xde>i\xd6+.\xc7\xeb\x05`\xc5\x83 \x82CZT>X\x9c+.B\xcd\xb1\xdf.\x99%\x961\x94*N]e\x93\x94P \xff\xe8\x7f\xcd\x05\xbd\xc6\x18\xf8\xd4@T\xf9\xb5\xd6p\x17\xd2\x15\xf0\x8e\x9c\x02\xd0F\xe5\xeb\x0e\x0e\x0c\n0Nt\x8d\x05\xd8\xf1\x9c!\xbb\x13\x9c&\xd6\x8b;`\xbe\x14\x8c\x1b\x927qo=\xa4u\x81_\xc56q(Y\x85 \x1d\\n\xfc\x80\xc4\xafp\xa6,S\x14\xc3$\xb0\x86\x0cV\xe3\x92\xadhV3L\x8eD\xa3wI\x16\xe1\xb0\xdb\xe3\xac\xac\xacb\x83\x9c\x81\x1a\x83\x00\xb3\xb4\x94\x07\xc3\x86\xa0\x8c\x1bq\x80\xb8\xf2\x1c\xb6<\xb8Kh\xf1+\xfe\x07\xf0\x95\x86S\x8emA\xd7\x0bF.0A\xba>\x032p\'\x1f\x8a\x11\x9c\xcf\xa5\x84\xef\\Q\xf7\xf0\xb75\xb1\x7fw\xac\x94\x96#\xa0:\x9d \xa1\xa3#\x99\xcb\xa41\x1en\x08\x9b\x1c\xd2Y\xc9\x9f\x9a:\xe9\xc7_\x0b\xcegT\xb5\xa1}\x15\x82`)\xd9o\x03h\x1f\xff\xcc\x1c\x9b\xf1\xf7\xce\xf8\x08p#\xfc\xa2\xc0\xc4hg\x87\xfc\xd1\\\xa9\xe6\x91g\x0b\xf0l\xe6z\xa5&\xb6\x18\xecs\x11\x99i\xea\x84\xef\x99\xafA\xf0.\xa0?+\x1a\xd5\x06\x94l(\xaf\xb8\xf0\xd3\xe6\xa9\xdd\xd8x\xaaD\xff\xe7\xbc\xdf\t\x18\xe7>#\x05\x8c2\xbb]\xe5\xff\xddl*\x93?\x88\xc9V\xf8\x93\xd6\xa8GR\xeb\xfe\x12/\xf4I,\xba\x9b\x1eV\xc9uI\xca<\x9a>\xa4&\x02\xa2\x98\x8e\xee#\x03o(\xc5\xb3\xddcm\xa8\x89;\xaf\xc1\xa3`\xce\xd2\xd8\x80\xa6+\xeb\xde+\xe4\tn\xc9\xa6Cj\x0e\xb5\xdf\xb5J\x9c\xd9\x9e\x89\x80\xf5\xe4G\x9fF*u%\xbe\xc0\xa0\x85\xe5\x9al=\xd6l4 \xd3o\xb61\x91\xf2g:\xd5V\xeb\xa1\rgU\xb7j\xcbH\x06\x10\xd7&O\xe6gJ;\xf9\xdc\x9es\xd0P\x93\xca\xff:M\x87E\ng\xaf\xb3\x8b\xf9"+\xfa\x1f\x91U%]\x0f_B\x17w\xd5\x1cv\xed\x7f!\xeb\x19F=FJH')

	fake.md5(raw_output=False)
	# '5ad032a5105e06fdd81731e83351354c'

	fake.sha1(raw_output=False)
	# '7c024f156db25330c6a67a1ab3d4c7edb313467e'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '71937d6951d3a48f6b97e98d9693dbfa1b4221b2c140b3517ec6d02517628bb5'

	fake.uuid4()
	# '340e2580-d5cd-df3a-f859-543fdc74d799'

	fake.language_code()
	# u'pa'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Teixeira'

	fake.name_female()
	# u'Lu\xeds Machado'

	fake.prefix_male()
	# u'da'

	fake.prefix()
	# u'de'

	fake.name()
	# u'Em\xedlia Monteiro'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Irina-Francisco Domingues'

	fake.first_name()
	# u'Carlos'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Paulo'

	fake.first_name_female()
	# u'Lucas'

	fake.last_name_female()
	# u'Monteiro'

	fake.last_name()
	# u'Mendes'

	fake.prefix_female()
	# u'de'

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

::

	fake.phone_number()
	# u'(351) 925 741 114'

	fake.msisdn()
	# '0765151399729'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Largo Mota, 329\n6383-391 Pa\xe7os de Ferreira',
	#     'birthdate': datetime.date(1929, 11, 17),
	#     'mail': u'rmatias@gmail.com',
	#     'name': u'Catarina Matias-Branco',
	#     'sex': 'F',
	#     'username': u'kelly74'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Rua de Carneiro, 7\n3911-174 Peso da R\xe9gua',
	#     'birthdate': datetime.date(1935, 7, 17),
	#     'blood_group': 'B+',
	#     'company': u'Matos',
	#     'current_location': (Decimal('-38.619166'), Decimal('-96.289576')),
	#     'job': 'Geneticist, molecular',
	#     'mail': u'barbosaalexandra@clix.pt',
	#     'name': u'Benjamim Alves',
	#     'residence': u'R. de Lopes, 97\n6415-992 Almada',
	#     'sex': 'M',
	#     'ssn': u'388-01-1754',
	#     'username': u'gomeslorena',
	#     'website': [   u'https://www.vieira.pt/',
	#                    u'http://neto.com/',
	#                    u'https://alves.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'XKhClhzZKJgrmahDuEEw',
	#     Decimal('-474564366.191'),
	#     3759,
	#     u'erZwNPOzfOYCvAqmdPgc',
	#     u'ZdWzSIViTeFwKcQrVXIT',
	#     u'zBjIbGAriLTzvErGhQAB',
	#     3575]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'DTnujDqjTIFsGSAMOTzC',
	#         u'gWnGxgNtVAwtuOvkyoOQ',
	#         u'iGDqpMqtUIVRrUIcVsuK',
	#         4702,
	#         datetime.datetime(1987, 12, 20, 16, 30, 58),
	#         3526485585154.0,
	#         3499,
	#         1314,
	#         Decimal('2.57490887912E+13'),
	#         u'HPQOfhsDOshDGPTpWpxq'],
	#     {   u'aperiam': u'lLrsvjwWwOwJNmXssesf',
	#         u'ducimus': 3,
	#         u'enim': u'qWLUVdwkLFpCvAtJgRVX',
	#         u'in': u'uTSfsXsOOQtjnWtBNjPm',
	#         u'iste': Decimal('831541.873372'),
	#         u'maiores': 8768,
	#         u'maxime': u'KLMavlVFcczGLpbepkiq',
	#         u'sunt': u'camilaabreu@ferreira.pt',
	#         u'tempora': u'http://www.amaral.pt/wp-content/about.asp',
	#         u'vel': u'ibarros@pires.com'},
	#     {   u'amet': {   7: 8987,
	#                      8: [473178.747, 5057, Decimal('59300754435.5')],
	#                      9: {   7: u'FlgPgsTvvoOGwDBjZIFF',
	#                             8: u'leandrofigueiredo@neves.pt',
	#                             9: [   Decimal('461400159.6'),
	#                                    u'https://www.coelho.pt/about.php']}},
	#         u'ea': {   8: u'bjesus@clix.pt',
	#                    9: [   u'rodrigomonteiro@sapo.pt',
	#                           u'http://antunes.pt/app/privacy/',
	#                           u'HXwfkRkngcVqxEYeRRfK'],
	#                    10: {   8: u'aVAaDxWAHPFJfRYhkwOK',
	#                            9: -22895626978563.3,
	#                            10: [   -85446088271.0,
	#                                    u'http://www.jesus.pt/faq/']}},
	#         u'maiores': {   5: u'EKclZAqOycYwVzyynsGj',
	#                         6: [5334, u'reisrui@rodrigues.com', 3457978328.855],
	#                         7: {   5: u'https://amorim.pt/wp-content/posts/posts/index/',
	#                                6: u'aGQPxIbUcTFcnkQtUygE',
	#                                7: [   u'https://azevedo.com/main.php',
	#                                       u'alicecarneiro@ferreira.com']}},
	#         u'necessitatibus': {   4: 428,
	#                                5: [   550270.59164,
	#                                       Decimal('875599208.65'),
	#                                       469038.67199833],
	#                                6: {   4: Decimal('5.537'),
	#                                       5: u'https://pinheiro.com/',
	#                                       6: [   u'WLVoXJvqsOvrIvsFxpkN',
	#                                              u'figueiredoleticia@hotmail.com']}},
	#         u'nobis': {   6: u'OylgLVOhkZRSkYaKZXpq',
	#                       7: [   datetime.datetime(2012, 10, 19, 7, 17, 55),
	#                              u'VzOIOnBNNBKLduVKrSpN',
	#                              46664.0],
	#                       8: {   6: u'DJmUApHTubXRlIXbQRWa',
	#                              7: u'ZXwafNUwfJHApcibyeJy',
	#                              8: [   u'marcio79@gmail.com',
	#                                     u'EGNKbpePIffOqScLStEl']}},
	#         u'occaecati': {   3: 1811,
	#                           4: [   u'http://www.silva.com/search/',
	#                                  u'andreneto@gmail.com',
	#                                  u'ExsZzjAtLFWhXrObUdfN'],
	#                           5: {   3: datetime.datetime(1989, 1, 22, 22, 25, 49),
	#                                  4: u'hQBMLNhyCsAJjtljcyvJ',
	#                                  5: [   u'fcWiZzpMQiXyOoJvtbzo',
	#                                         Decimal('3.59188')]}},
	#         u'praesentium': {   2: u'kogChOlsKAeeRjyBWRTn',
	#                             3: [   5570,
	#                                    u'jUhWerNNBfjwVTHLUWyL',
	#                                    Decimal('8.9398045098')],
	#                             4: {   2: Decimal('0.0'),
	#                                    3: 8445,
	#                                    4: [   u'GeXdEagFYYVHofFMTqzT',
	#                                           u'UjFUneIOLBLLZTXXXGGS']}},
	#         u'quam': {   9: 5195,
	#                      10: [   21.0,
	#                              datetime.datetime(1999, 11, 12, 6, 56, 11),
	#                              Decimal('237440755902')],
	#                      11: {   9: 166,
	#                              10: 4860,
	#                              11: [   u'https://www.leal.com/',
	#                                      u'WfHKmeqbrXPfIObTageH']}},
	#         u'quasi': {   1: 115290339.45,
	#                       2: [   2541,
	#                              u'DnCxIUCZnaBxkTeNkFCw',
	#                              u'https://esteves.pt/post/'],
	#                       3: {   1: 2405,
	#                              2: datetime.datetime(2006, 10, 2, 6, 42, 30),
	#                              3: [   u'UrWFoUwTPohAqCabgfCC',
	#                                     u'pDjVdBKCZuWDAEnjmOTx']}},
	#         u'quisquam': {   0: u'netoandreia@sapo.pt',
	#                          1: [   u'http://nascimento.com/blog/wp-content/index.php',
	#                                 datetime.datetime(1982, 12, 8, 10, 41, 50),
	#                                 u'MZKBrRuVVcmUfAHFVgDP'],
	#                          2: {   0: 4060,
	#                                 1: u'ccqZklewVHwkuWryPZkq',
	#                                 2: [   Decimal('2.77536745859E+14'),
	#                                        Decimal('-1.25523961376E+13')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   585.4162644,
	#     u'moaISRjkdpFRKNndnFBa',
	#     u'yJtfmGfzmqhimrxfiIdv',
	#     u'lJbjUTqDiMCmvdphKHZf',
	#     Decimal('7255.20062'),
	#     u'nBbeKTjYPEWvISVySoTq',
	#     u'rdmEjEkmvOHzLWJSyChM',
	#     datetime.datetime(2013, 11, 27, 0, 39, 54),
	#     u'NNfJaAcAXFxsGVBobShz']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'hcqMPZgnSlhsaZOuyUhU',
	#     Decimal('1.1446414376E+11'),
	#     u'JxylWWxumJUxXFnAoNON',
	#     9.36797421902,
	#     u'ArOQLHInESmCaTadzGxQ',
	#     4914,
	#     u'iDiDSUHjvQdlvPdVphfc',
	#     u'VeEKPQLYpFXtsncghuBQ',
	#     8470,
	#     u'IBZvEVpCrYUKnBfKvpAm',
	#     9145,
	#     datetime.datetime(2014, 6, 12, 21, 2, 42),
	#     u'magalhaesmelissa@alves.pt')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([2017, u'ulpWafibZmmVBZWLNVXA', u'DRSGatCgOyumRCwCuKqm', 632.15873, Decimal('-1.5821'), 5940, 825728872793.29, 8119775382428.2, 1726])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'commodi': u'paulo40@melo.pt',
	#     u'dolores': 2340,
	#     u'exercitationem': Decimal('287810338133'),
	#     u'minima': 4816,
	#     u'modi': Decimal('27003031429.7'),
	#     u'mollitia': 790234.4,
	#     u'nihil': u'GWlmumagBRcPzdGYcSws',
	#     u'praesentium': u'CcjPIvazNKhTYeYcpMgY',
	#     u'provident': u'bxBzIlXAlwdviTukBlLu',
	#     u'quam': u'https://domingues.pt/about/',
	#     u'quod': datetime.datetime(1979, 1, 2, 6, 32, 18)}

	fake.pyint()
	# 2963

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'019-20-3137'

	fake.ein()
	# u'92-5075081'

	fake.itin()
	# u'947-97-6789'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.0; ku-TR; rv:1.9.0.20) Gecko/2016-07-01 16:11:21 Firefox/6.0'

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

	fake.opera()
	# u'Opera/8.87.(X11; Linux i686; fy-DE) Presto/2.9.167 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; ce-RU) AppleWebKit/534.27.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6534.27.5'

	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_5_6) AppleWebKit/5352 (KHTML, like Gecko) Chrome/55.0.887.0 Safari/5352'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; ig-NG) AppleWebKit/533.21.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.21.2'
