
Language pt_BR
===============

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

::

	fake.estado_nome()
	# u'Alagoas'

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

	fake.street_name()
	# u'Viaduto de Moura'

	fake.street_prefix()
	# u'Largo'

	fake.address()
	# u'Distrito Viana, 59\nIpe\n36353-521 Gomes de Minas / DF'

	fake.street_address()
	# u'Esta\xe7\xe3o Fernando Pinto, 95'

	fake.bairro()
	# u'Vila Bandeirantes'

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

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

	fake.country()
	# u'Vietnam'

	fake.neighborhood()
	# u'Ipe'

	fake.estado_sigla()
	# u'ES'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'do Sul'

	fake.building_number()
	# u'7'

	fake.estado()
	# (u'SP', u'S\xe3o Paulo')

	fake.state_abbr()
	# u'AP'

	fake.city()
	# u'Melo'

	fake.postcode()
	# u'44221061'

	fake.state()
	# u'Rio Grande do Sul'

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

::

	fake.license_plate()
	# u'FXL-0386'

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

::

	fake.bban()
	# 'LTGT6023345931935'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB08HRVT5450124870731'

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

::

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

	fake.ean13()
	# u'0594965223425'

	fake.ean8()
	# u'43899425'

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

::

	fake.rgb_css_color()
	# u'rgb(218,187,176)'

	fake.color_name()
	# u'Heliotr\xf3pio'

	fake.rgb_color()
	# u'213,48,9'

	fake.safe_hex_color()
	# u'#776600'

	fake.safe_color_name()
	# u'verde claro'

	fake.hex_color()
	# u'#60355c'

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

::

	fake.company_id()
	# u'87623665000130'

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

	fake.company()
	# u'da Concei\xe7\xe3o - EI'

	fake.cnpj()
	# u'21.246.683/0001-31'

	fake.catch_phrase_verb()
	# u'de avan\xe7ar'

	fake.catch_phrase()
	# u'O conforto de evoluir com for\xe7a total'

	fake.bs()
	# u'leverage scalable networks'

	fake.catch_phrase_noun()
	# u'a liberdade'

	fake.catch_phrase_attribute()
	# u'antes de tudo'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'American Express\nMaria Vit\xf3ria Nascimento\n341511546182308 11/27\nCID: 9638\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'TRX'

	fake.currency_code()
	# 'CZK'

	fake.currency_name()
	# 'Swedish krona'

	fake.cryptocurrency_name()
	# 'Zclassic'

	fake.cryptocurrency()
	# ('XMR', 'Monero')

	fake.currency()
	# ('PGK', 'Papua New Guinean kina')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 20, 14, 19, 26)

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

	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(2010, 5, 16, 22, 6, 57)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 11, 3, 39, 57)

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 4, 3, 17, 56, 52)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 1, 20, 12, 43, 29)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1976-10-25'

	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(2002, 6, 1)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 4, 25)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2003-07-06T21:22:32'

	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(2009, 11, 23)

	fake.month()
	# '07'

	fake.year()
	# '2002'

	fake.day_of_month()
	# '18'

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

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

	fake.century()
	# u'III'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1983, 6, 19)

	fake.time_object(end_datetime=None)
	# datetime.time(3, 30, 45)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 7, 21, 56, 26)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1990, 7, 30, 0, 41, 8)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '11:03:44'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 12, 18, 57, 15)

	fake.month_name()
	# 'May'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(124, 1, 19, 12, 15, 15)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(12287, 47178)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/repellat/optio.gif'

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

	fake.file_name(category=None, extension=None)
	# u'aspernatur.wav'

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'lmartins@ig.com.br'

	fake.url(schemes=None)
	# u'http://www.sales.br/'

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'homepage'

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

	fake.safe_email(*args, **kwargs)
	# u'beatriz67@example.br'

	fake.ascii_email(*args, **kwargs)
	# 'gabrielly04@costa.br'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'wfogaca@rodrigues.org'

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

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

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

	fake.slug(*args, **kwargs)
	# u'dolorum-delectus'

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

	fake.company_email(*args, **kwargs)
	# u'azevedopedro-henrique@da.com'

	fake.uri()
	# u'http://da.br/search.htm'

	fake.ipv6(network=False)
	# '1f34:7f32:89b0:7003:3902:625b:69be:1945'

	fake.free_email(*args, **kwargs)
	# u'sophiadias@bol.com.br'

	fake.ascii_safe_email(*args, **kwargs)
	# 'piresana-julia@example.com'

	fake.mac_address()
	# u'1e:18:76:08:20:75'

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

::

	fake.isbn10(separator="-")
	# u'0-8156-2315-1'

	fake.isbn13(separator="-")
	# u'978-1-5433-7240-3'

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

::

	fake.job()
	# u'Rep\xf3rter'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Itaque deleniti modi cum fugit maiores id. Ad eveniet doloremque sequi impedit.\nAperiam cumque itaque asperiores ut commodi. Quod adipisci sit voluptates tempore nisi tenetur.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Itaque facilis itaque libero quaerat possimus. Esse voluptatem debitis beatae commodi a.',
	#     u'Nemo totam dolore omnis rem voluptas distinctio. Cum illum maxime in perferendis distinctio quam nesciunt. Cupiditate quaerat ab magnam iste soluta quas exercitationem.',
	#     u'Et libero officia qui nemo magnam.']

	fake.words(nb=3, ext_word_list=None)
	# [u'ipsa', u'impedit', u'doloremque']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Blanditiis autem nisi animi eum.',
	#     u'Quis praesentium possimus.',
	#     u'Quisquam odit ab nostrum.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Veniam sapiente dolor placeat. Omnis laudantium doloribus distinctio blanditiis non ab. Voluptatibus fuga quas ipsam. Porro velit expedita.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Nisi alias inventore autem numquam tempore.'

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

::

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

	fake.locale()
	# u'kw_GB'

	fake.binary(length=1048576)
	# bytearray(b'\xa7V\xd2\x94\x0f\xd9"\x12\xc0\xd7\x810\xf5\xae\x97aS\xbf\\\xaf\xfe\xff\xda\xe6d\xe5\x99\x99_KHsO\r"\xf6\xf3)3\x0fc\xcai}MT\xc4\xff}l\\q\xa3\x83e>\x93^\'\xb9\xbeQ\x93\xed\x04S\xfex7VN\xfb\xa3\x88(Y\xbf\x01+\x9d\xd4A\xddl\xb8\xdd2o\xaa7X\x84(R#b\xf5d\xe7\xe1]kD`3\xf7\xbd<\x8c\xc36\xd0\xbe\xdc(2\xf3\xbdwZ\xd2\x0f\x7f0\xdc;\x03\x7f\xe7\xf1&$\xd2\xa7\xff\x9a\x11\x86\xbb\x08\x16\x08Vu4\x04\xdbTy\x86\x0e\xc6\xe9\xd6\xafR\xe1\xadC_`oo\x96\xa4\xb9\n\x93?p\xd8u\x85BR\x85\x99!\xd8C\n\xe8\x80\x0e\x89\x1ay:\xb7O\xb1\xec\x95\xc5\xe2\x8c2\xd1_\xf4uR\xf9Z\xfa\xd6jA\xb0\xa3\xc7\x7f1\x96M\x1d\x9fl\xdcX\xab\x17\xdc\x8aQ\xff\xf4{\xf2\xa6\x08\xa5!\x01Gx8_\x1f\x00\xf2w:\xad\xed^K8g\\4D\xb9/\x04\x80\xb7\x7f(q[\x16*\xd2\xbb\xad\x91Z\xaf\xa4\xca\x96\xae\xa20\xfd\xa8Jz;q\xc5~a\xb6\x80\x1e\xd8\xf7W\t\xa7\xb8\x80\xe8BlK\x96\xae\xb3\xb9\x13(k\xb64\x05r0\xc67zS\xf5\xda\x91\x90V\x1f,\x84\x90g<\xbf\x8d\xa1\xc0\xfc\xdc\x0c\xff\xe1d\xe95\x9d\xe96W\xc6\x81\xdf\xbb\xbd\xd1\x08\x0c\x9e\x06\x99:\x87\xa6\x99}(\x87\xac\x8cn\xb5\xa9}\xa2},\xd1\x96Kc\xce=\xa7\xf3-:b\x8e\x91\xc2\xbb\x82\x8b\x1a\xe4\xdf\xee`\xa2\x93\xdc\xdf*c\xaen\xee\xf2gR\xb0q\xc1\x80\xf6\xaf\xb6rW\x95\x85\xa7\xbe4dd\xb3\xc8\x0cy\xa6_\xc9\x97=\xb0\xd7sc\x04\x8b\xe3\x1d\xd1\x87\xfe\x06\x969\xf8\xb9j\x9d\x10l\xb3\xfeu\x18\xcct\x97\xf3o\xaas&\x83b\xdc\xe0\x82W\x92\x7f\xbfi\xe3j\xa4BF\x0b\x9f\xfe2\x9bZ~h6\xf7|\xf5\xa6\xbc\xb0{\x96\x11\xc2\xcb\xfb\xdbpn\xc9\x0e\x81ho$\xedT[\xd3\x83\xc0\xef\x03+\x17\xa9\xeb\xd3\xf9\xc8V4\xd0<R2\x8fP\xabp|\xd3\x95Rj\x82\xb9\xd1\xea\x8b\xca\xbb\xdd5\x82*\xf7\xc9r$\\(\xa6h5\xf8\xe0\x0e9\x95)97(\x7f\xa8\xa7\x80[\xf8\xa6\xac\xe6\x98\xfdG\xc4\xaa\x1d\xed.j\xec^\x8c\xc9x\xeb\xc5\xa7hg\xdfx@\xac\xa3\x012\x99\xa4\x82\x1c\xba^\xebF\xb4\\\x83R\xf7g\x9e\xd8-\xbesz\xb7\x9c\x1b\xf2CH\xb8\x08T\xea\xfe\x194\x8b+!\xd1\x1b\xf6\x08\xda\xb7\xae\xa4@`\xb9\xb7-0\xb5sQ\xcd\x9c4\\\xd9(\x12z\x04@\xf9\xe2H\xeb\xe1J-\x89\x83\xddX\xd6\xb8\x8do\xdcn"\xe4hs\x0b\x10n!g\xc85;\x99\xc6\xdc\xe3\r\x87~-\xa1Yv/DUw\xc2\x18s6\xff\x0b\xe5:\xf5\xc0\x05H\x88p\xba\x07l{Z\x03\xebto\xcd\xe5\xc2\x88w\xbd+\xb0\n$\xd6\xa4\xc0\\\x96\\K\x14e\x84_2\x9e\xa9lx\xc8\x0c\x06\x96P\x9b\xafM\x0c\x9f\xcb#C{;\x85\x02\xd8\x06\x07\x04\x90\xd1\x95=\x12\xd0\xa4\xb0\xab\xb01\xa3\xc0\x8f\x81W-X\xca\xf1\xc8\x84\xf2\xd0\x0fz5\xf9JU\xb3\x8e\xddEY\xb8?\xb0\x82\xfb\xe0\xa1I\xfe\x84\xaeclg\x0eZj\x11\x9ext\xd5\x0b\xf6P\xca:T=\xec\x8bo2y\x11\xd2N\x9f\xe5\xef\xb9\xe7\xe9\x88\x14\x84}\xacn\x8a\xb6\xff\xdb\xe5\xa5"<]\xe9\xbb\x85I\xd2\xad\xd9\x18\xec\t\xb8\xa1\xdb\x07\xdd\xb2\xe5:\x87\xdb?\xd02\'{\x9d\xc7[\xfc\xba\x15\xf9C\x89]\xbf\xe4\x1c\xe13\xe6\x9d>\xf7}\x9e\xbdO\x17\xdf\xd8\xcb\xc3x\xa3\x15\xec\xa3\x07u\x19\xe5\x8d\xd6\xc8\x06f\x8a\xb1s\xb7\xbc\xfa\x88\xc2\xf9O\xa7\xb3 \x92\x1a\x1f\xc1\xb6\xe8\x8b[h&\xcf\x01\xef\x98A\xb2X\x9fn\xa4\xb8\xb6>Z\xe7pRo\x00\xda\xe2)\xce\xab\xbd\xdf\x7f$%HRn\xd9\xa7\x98H\x1aw\xb0\x9d\x9d\xd9\x05\xd0lH\x02o\xf9\xa1\xe9-\xbdW\xe4gB\x1e3\xab\x91\xf0\xe7\xfa%\x10')

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

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

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '3353f5eba61cd302e8d4af4e8ad438eae97bfed4eb0d43d65586ea2cce43cc52'

	fake.uuid4()
	# '504a2293-4bbf-eb7c-54e1-00ed011fee9c'

	fake.language_code()
	# u'sat'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Correia'

	fake.name_female()
	# u'Joana Cunha'

	fake.prefix_male()
	# u'Sr.'

	fake.prefix()
	# u'Sra.'

	fake.name()
	# u'Dra. Isadora Costa'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Jo\xe3o Lucas Azevedo'

	fake.first_name()
	# u'Luiz Ot\xe1vio'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Augusto'

	fake.first_name_female()
	# u'Ana J\xfalia'

	fake.last_name_female()
	# u'Melo'

	fake.last_name()
	# u'Martins'

	fake.prefix_female()
	# u'Sra.'

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

::

	fake.phone_number()
	# u'+55 51 838 8541'

	fake.msisdn()
	# u'5541599742709'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Aeroporto da Concei\xe7\xe3o, 54\nBar\xe3o Homem De Melo 2\xaa Se\xe7\xe3o\n26410649 Monteiro / TO',
	#     'birthdate': datetime.date(1954, 12, 8),
	#     'mail': u'gustavo-henrique27@gmail.com',
	#     'name': u'Eduarda Porto',
	#     'sex': 'F',
	#     'username': u'emanuella18'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Viaduto Silveira, 62\nUrca\n18418-438 Santos / PI',
	#     'birthdate': datetime.date(1961, 10, 1),
	#     'blood_group': 'AB-',
	#     'company': u'Oliveira Gon\xe7alves - ME',
	#     'current_location': (Decimal('-25.171021'), Decimal('71.989117')),
	#     'job': u'Cabo',
	#     'mail': u'pedro90@ig.com.br',
	#     'name': u'Sophie Moraes',
	#     'residence': u'Condom\xednio Luiz Ot\xe1vio Martins, 51\nComiteco\n36313-046 Jesus dos Dourados / MT',
	#     'sex': 'F',
	#     'ssn': u'85742069111',
	#     'username': u'bruno68',
	#     'website': [u'http://www.azevedo.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('-5.17746895104E+12'), 1218, u'REFItsTxiBvxkNkhFzNJ', u'http://www.da.br/', 8495, u'GwZGDNesEoGFxKqSBypO', u'https://www.ferreira.com/', u'mERbNHkzLNvOfdblGJPg', datetime.datetime(2017, 7, 25, 20, 11, 25), 889, 2095])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'lauracosta@yahoo.com.br',
	#         u'https://www.lima.br/wp-content/categories/category.php',
	#         Decimal('405037072.21'),
	#         -416.60878,
	#         datetime.datetime(1975, 6, 30, 11, 53, 25),
	#         u'AirvDrHKpHnMyGWknhtd',
	#         u'SrfIItHDYIqugaPsUjjx',
	#         u'https://ferreira.com/category/posts/categories/index/',
	#         u'CNhmURVywJqKVKzTagOC',
	#         u'asvBqwCeyeZuWAPdysri'],
	#     {   u'cupiditate': Decimal('-62621.0'),
	#         u'eveniet': u'sdRdhmWLJlbhRfxAKTfx',
	#         u'illo': 5089,
	#         u'ipsam': u'HBopMGkAqMTxmWYgtJET',
	#         u'placeat': u'OUZQwMoUPzgAASduGarj',
	#         u'possimus': -898377136.989106,
	#         u'quaerat': u'DsmlihUYqnKCmvlHoSMF',
	#         u'quam': 5736,
	#         u'quod': datetime.datetime(2004, 4, 27, 16, 16, 31)},
	#     {   u'debitis': {   4: u'http://www.correia.org/',
	#                         5: [   u'QrcqtCMLTYTDkNDnClxU',
	#                                datetime.datetime(1972, 2, 27, 17, 57, 19),
	#                                u'ana-julia71@gomes.net'],
	#                         6: {   4: u'jkDaTMelnHfjZAojxsmg',
	#                                5: Decimal('54638036.3456'),
	#                                6: [   u'nOnnWedIbZiQYBtLxhiN',
	#                                       u'TPYWzMGnVFQoQhWbpgkd']}},
	#         u'eaque': {   5: u'FUenpRyWXPzuuHMDgOda',
	#                       6: [9301, 7480, u'QRMKgmnAfJWJcqHXoIRm'],
	#                       7: {   5: 36108.382,
	#                              6: u'xKrXiZqvrSHfokQJrmqF',
	#                              7: [   datetime.datetime(2001, 4, 28, 5, 48, 35),
	#                                     9319]}},
	#         u'eius': {   6: u'PNrKEDZCJAAqgIXLlmoK',
	#                      7: [   datetime.datetime(1999, 4, 29, 17, 47, 11),
	#                             u'https://duarte.br/',
	#                             datetime.datetime(1977, 10, 27, 17, 30, 21)],
	#                      8: {   6: 9847,
	#                             7: Decimal('-6.01849892579E+12'),
	#                             8: [   u'HiEcMwvvEvhcaHhSlZsb',
	#                                    u'CmEIqKgUIKbwveYPHTDY']}},
	#         u'fugit': {   0: datetime.datetime(2009, 2, 21, 2, 24, 51),
	#                       1: [   u'XoDmpkBCVqXucJahwzYC',
	#                              u'http://www.da.com/privacy.php',
	#                              u'http://www.fariasfernandes.com/tag/tags/search.htm'],
	#                       2: {   0: datetime.datetime(1990, 10, 10, 14, 53, 58),
	#                              1: u'kda-cruz@gmail.com',
	#                              2: [u'aYAdYonMgMXPViMdGRvt', 433]}},
	#         u'iure': {   2: u'diasemanuelly@uol.com.br',
	#                      3: [   1869.42,
	#                             u'IsAxLoCnihzoowDNAKhL',
	#                             u'fUZvhGTYnhFuMrhomLcJ'],
	#                      4: {   2: u'http://porto.com/',
	#                             3: u'gtZCJVHCzFcnNrBIDIzj',
	#                             4: [   Decimal('-8706016.68412'),
	#                                    u'jfDapBLvPdzViqMXNHNE']}},
	#         u'maiores': {   7: u'HcFkmaeunwkeFSKEHVUM',
	#                         8: [   3213,
	#                                702.1720013,
	#                                Decimal('-6.72358958769E+12')],
	#                         9: {   7: u'hbarbosa@hotmail.com',
	#                                8: u'https://www.da.com/',
	#                                9: [   u'ysJbkkpgkLzizgmRopGV',
	#                                       u'YPlBTYTeuIaxBpPKervU']}},
	#         u'molestiae': {   1: u'xOYRTAsEAttINVoufnQt',
	#                           2: [   -720940651448845.0,
	#                                  Decimal('447380069.459'),
	#                                  Decimal('469359927825')],
	#                           3: {   1: u'http://barbosa.br/explore/app/about/',
	#                                  2: Decimal('7211.3974107'),
	#                                  3: [   u'cFKMAIwvoTIIAwejHsHx',
	#                                         u'vicente58@yahoo.com.br']}},
	#         u'occaecati': {   9: 8345,
	#                           10: [   Decimal('-295.1088'),
	#                                   8185,
	#                                   datetime.datetime(1994, 10, 27, 5, 44, 30)],
	#                           11: {   9: u'viVRMFHpxpHwDVFnngwr',
	#                                   10: 339,
	#                                   11: [   u'EEJLjqkdjToHbCNcvqxg',
	#                                           u'StNqfIvWshgxlMbeaKeH']}},
	#         u'placeat': {   3: 7215,
	#                         4: [   Decimal('-907474557463'),
	#                                1121,
	#                                u'ItnLuzWOkSHUJlDeShdl'],
	#                         5: {   3: u'AVbIFnSUpaakCLXxvKNE',
	#                                4: u'nuneslavinia@uol.com.br',
	#                                5: [u'ycosta@oliveira.br', 4670]}},
	#         u'sequi': {   8: u'ZxVCvfssascgThhxRPOb',
	#                       9: [   9809,
	#                              datetime.datetime(1994, 8, 29, 3, 19, 1),
	#                              u'MStgnoLWljPENKZjOzyy'],
	#                       10: {   8: -419.1356603405,
	#                               9: u'nShCxCGYnhQtgzxrnDgH',
	#                               10: [   8818,
	#                                       datetime.datetime(2006, 4, 27, 23, 31, 5)]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'OpocZtreSPfHjUsAMwPd',
	#     u'tvKduzTpfdmxCXFUqxCd',
	#     u'UFmkcDwdwMRaAbrAJlRl',
	#     5852,
	#     u'ana-sophiajesus@yahoo.com.br',
	#     u'mmBuyqtMkbfrMfpHAXPZ',
	#     datetime.datetime(1972, 9, 17, 10, 27, 12),
	#     u'http://das.com/main/homepage.asp',
	#     1875,
	#     u'https://www.silva.net/list/main/wp-content/index.html',
	#     u'PldxsJHgLDbFZTdPrZqv']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'dtHgGtLalyVltEFfVzoU',
	#     u'dCGEHHgzmjQVSypTsUdr',
	#     u'XIPtwmGYuXMkpXHrJUma',
	#     4106,
	#     datetime.datetime(1985, 7, 16, 19, 22, 33),
	#     u'KvEWxZdcEGtequIadjlM',
	#     -179251.7952,
	#     u'rDuEHgAivgaeBvkCvInm',
	#     u'uazevedo@ig.com.br',
	#     u'uBGiVvtguXfjClGgDabs',
	#     datetime.datetime(1973, 10, 24, 12, 37, 30),
	#     -2755372332.5007,
	#     datetime.datetime(2008, 7, 20, 9, 5, 33))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'QcfmWdkCqzwWfSVrAWEL', datetime.datetime(2004, 10, 31, 2, 30, 36), u'https://vieira.org/search.html', u'DWqwBJanmhmPwuEdgAQB', 496, u'MYCrjvEkxePtPWRUDYZk', u'http://peixoto.com/main/posts/homepage.htm', datetime.datetime(2016, 12, 25, 22, 53, 49), 20940339.31639, u'http://www.monteiro.org/register/', -95253420034912.7])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'culpa': u'rGcpaqnvuZOgkccnOcdP',
	#     u'cum': 9881,
	#     u'ducimus': u'HJzVikGZSOmmJtLXTnik',
	#     u'eaque': u'ACoBrYjXnzIzmdpYbitG',
	#     u'illo': u'https://www.da.org/search/',
	#     u'in': u'vcRQTgnuoVXVXIjRtDQV',
	#     u'ipsa': 3573,
	#     u'mollitia': u'lekFvQtfQQvBtycEwSLU',
	#     u'natus': -1845290.94,
	#     u'quam': u'pedro-henriquenascimento@pires.com',
	#     u'rerum': u'KnjwtiuuLZhOgmXYyGhF',
	#     u'vero': u'ZDrNXArOjKQhkKqhXCoM'}

	fake.pyint()
	# 6775

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

::

	fake.cpf()
	# u'925.308.764-10'

	fake.ssn()
	# u'94018563205'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.1; raj-IN; rv:1.9.2.20) Gecko/2013-03-12 06:42:08 Firefox/10.0'

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

	fake.opera()
	# u'Opera/8.27.(Windows NT 6.1; nl-NL) Presto/2.9.184 Version/11.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2018-02-28 20:06:05 Firefox/5.0'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_3) AppleWebKit/5321 (KHTML, like Gecko) Chrome/41.0.892.0 Safari/5321'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.30.2 (KHTML, like Gecko) Version/5.0.5 Safari/531.30.2'
