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

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

::

	fake.estado_nome()
	# u'Santa Catarina'

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

	fake.street_name()
	# u'Travessa Cunha'

	fake.street_prefix()
	# u'Largo'

	fake.address()
	# u'P\xe1tio Valentina Silva, 237\nInconfid\xeancia\n66789-371 Barros de Goi\xe1s / RR'

	fake.street_address()
	# u'Quadra Mendes, 231'

	fake.bairro()
	# u'Vila Oeste'

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

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

	fake.country()
	# u'Samoa Americana'

	fake.neighborhood()
	# u'Pilar'

	fake.estado_sigla()
	# u'AM'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'da Praia'

	fake.building_number()
	# u'51'

	fake.estado()
	# (u'BA', u'Bahia')

	fake.state_abbr()
	# u'PR'

	fake.city()
	# u'Nunes de Moreira'

	fake.postcode()
	# u'84852275'

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

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

::

	fake.license_plate()
	# u'FSQ-3833'

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

::

	fake.bban()
	# 'LILH7872038903605'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB60GHEN6424203791275'

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

::

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

	fake.ean13()
	# u'9195567969288'

	fake.ean8()
	# u'38209970'

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

::

	fake.rgb_css_color()
	# u'rgb(22,192,162)'

	fake.color_name()
	# u'Verde mar m\xe9dio'

	fake.rgb_color()
	# u'99,120,253'

	fake.safe_hex_color()
	# u'#ffcc00'

	fake.safe_color_name()
	# u'roxo'

	fake.hex_color()
	# u'#e8cddf'

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

::

	fake.company_id()
	# u'75513690000181'

	fake.company_suffix()
	# u'e Filhos'

	fake.company()
	# u'Costa'

	fake.cnpj()
	# u'51.575.313/0001-09'

	fake.catch_phrase_verb()
	# u'de conseguir'

	fake.catch_phrase()
	# u'O poder de realizar seus sonhos direto da fonte'

	fake.bs()
	# u'scale B2C users'

	fake.catch_phrase_noun()
	# u'o prazer'

	fake.catch_phrase_attribute()
	# u'mais facilmente'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nMaria da Mota\n3542488902504428 05/26\nCVC: 134\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XMR'

	fake.currency_code()
	# 'GEL'

	fake.currency_name()
	# 'Guyanese dollar'

	fake.cryptocurrency_name()
	# 'Dogecoin'

	fake.cryptocurrency()
	# ('DOGE', 'Dogecoin')

	fake.currency()
	# ('JOD', 'Jordanian dinar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 17, 13, 19, 50)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2019, 5, 15)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2000, 7, 22, 13, 54, 20)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 7, 8, 31, 11)

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

	fake.day_of_week()
	# 'Sunday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 3, 25, 19, 10, 53)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2009, 4, 9)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 2, 1, 13, 43, 37)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1994-06-04'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2019, 5, 15, 4, 21, 20)

	fake.date_object(end_datetime=None)
	# datetime.date(2005, 4, 24)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 1, 15)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2006-03-29T16:30:20'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2008, 11, 16)

	fake.month()
	# '05'

	fake.year()
	# '2015'

	fake.day_of_month()
	# '18'

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

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

	fake.century()
	# u'XV'

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

	fake.time_object(end_datetime=None)
	# datetime.time(21, 27, 54)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 2, 9, 19, 35, 52)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1996, 4, 30, 12, 27)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 9, 8, 7, 27)

	fake.month_name()
	# 'June'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1277, 1, 1, 11, 1, 27)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(15180, 15646)

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

::

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

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

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

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

	fake.file_name(category=None, extension=None)
	# u'occaecati.jpeg'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/289/991'

	fake.tld()
	# u'br'

	fake.email(*args, **kwargs)
	# u'kcampos@yahoo.com.br'

	fake.url(schemes=None)
	# u'https://www.cavalcanti.br/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'register'

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

	fake.safe_email(*args, **kwargs)
	# u'ana-vitoria77@example.br'

	fake.ascii_email(*args, **kwargs)
	# 'ana-julia88@caldeira.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'haragao@souza.net'

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

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

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

	fake.slug(*args, **kwargs)
	# u'perspiciatis-et-a'

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

	fake.company_email(*args, **kwargs)
	# u'mazevedo@cavalcanti.com'

	fake.uri()
	# u'https://almeida.com/posts/app/search/'

	fake.ipv6(network=False)
	# '687d:d72:56fe:fd16:66bf:5257:9a73:50d'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'raragao@example.br'

	fake.mac_address()
	# u'f2:f4:6c:c1:2b:94'

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

::

	fake.isbn10(separator="-")
	# u'0-440-99356-3'

	fake.isbn13(separator="-")
	# u'978-1-4794-1486-4'

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

::

	fake.job()
	# u'Pneumologista'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Sit ratione ea. Enim est unde eum perspiciatis. Consectetur minima consequuntur iure odio nam.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Quam a incidunt quasi omnis. Rem vel maxime voluptas ipsam.',
	#     u'Ex fugit debitis debitis accusamus culpa dolore autem. Asperiores nisi dolores praesentium blanditiis perferendis nihil. Architecto eveniet doloremque qui eius ut.',
	#     u'Sapiente autem maxime perspiciatis repellat cupiditate. Aperiam maiores nemo maiores dolor.']

	fake.words(nb=3, ext_word_list=None)
	# [u'a', u'possimus', u'enim']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Repellat consectetur dicta laborum ipsa.',
	#     u'Quaerat itaque rerum unde.',
	#     u'Explicabo cumque doloribus consectetur.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Eos corrupti nesciunt eius reprehenderit. Porro ducimus aspernatur odit possimus aliquid esse similique.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Error odit optio iste minus.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u')vYY@v0V7Z'

	fake.locale()
	# u'hr_HR'

	fake.binary(length=1048576)
	# bytearray(b'\x13\xc3t\xa1\x8d\xcd`\x0e\xbfV\xfdF\xaa3\x9c\xc9\x7f\xf7\x12\xb3\r\xb5.\x1c\x84\xb5`\x8a\xac\xef\xfe\xcb\x9e&m~(\x1c~\x89\x0b\xfd\xc4\xab\x93\xd2\x12\x1c\x0f\xf3\xeb\x9c(\xa3\xc2PDn\x8fH\x91\x9b\xd7Z8\x1f\xe2\xc9\xfdc6\xf2*\x94\xbd\xa3nVS\x98\x0c!L\xd8\xa4\xa6\xebv\xb1\x14\x82\x9fwvW\xb18\xd6\xef\xf2D\xf2*\xab=\x8d\xe5\x95?\x004=\xee;8\x92I\xcf\xec\xd5%\x9d\xc9\xe4\x801\x9aw\x7fe\xfc)}\xf3|\xda:\x96\xfdJk1\x80\xb9Y\x10j\\\n\xac\xb3H\x9dt\x99)w[e\xb7\x192\x92N4\x8b\xafc\x99\xe4\xafC\x92J\x95\xfe\xfb\x98\x04d\\\xd7y\x0bp\xc1\xc9M+\xe9\xa4\xcb\xeb\x98|f\x9b!\x90\xf6*\xdbYy\rUu\xcbg\xee\n\xfb\xda\xde>\xf7\xcc\xa6\x1fo,\x9cx\xbaND\xc8i0\x8a\x83B\x85\xe0\x14\xfbV4\xa8\x19\x19fWR\x92\x01\xaf5"&\x80\x06\x7f\xe1\x0c\xfdk.{w`\x10\xda\x11\x12,1\xa6e\xf4\'\xf9"\x95\xdcqr\xb8\xe1\xc1\x94.\xe3,\xa1\xb3C\xf4\xa6>k\xac\xe27C\xa5\x90\xc2\x99\x08QxF\xd0LIh\x87+\n\x83\x99\xf4\xf3ID\xde\x80\x8a\x9at\xadb \xed\xd8\xf2{~\xb6\xd6\x0e\x0c\n\xee7e\xb0[\xea\x143\x0b$\'\x81\x8e\xe0]\x12=\xc0L\xd79O\x8b\x08\xea\xc1&\xe6% \x1c\xaa>+\xb5P\x9d\xa3\xf0:\xf6\xf0`\xd4#\x08\x10-\x96\xe1X\xe7\xa8\xde\xfa,V>\n\x1d\xf8W\r\x94K\xa7\xc8\xb1\x8c\x12\x15\xec\x87\xaf0\x99/s\x05\xb6/,G\x1d~\xb1\x17;\x1c\xe4\xb6\xdd\xf9\xa9\xaeWe\x99s"\xf5\x06\x83\xf4\xd0\x88\xfe\xf3_E\xae\x01\xa01\xa5\xb4\xbc\n\x93\x8bI0\xb6\nk`[\x93\xde\xcc\xa9.\xdb\xbc:M\xf38-5\xf5J/;|\xc2\xcc/\xbf\x14\xa0\x9e\x01\x9a|\xed\x98\x95\xf6\xd2\x85|\xef\x06\xcet\xf1\x98\xa1\xac\xd5Wf\xdd\xa2\xf2\xd6K\xfd&fc\xe7,\x17\xc6\x89h\x0b\xb0\xeb\xecT\xbap\x90\x8bv\xea)\xc8\xc2\xed\xca\xdb\xfb\xd4h\n\xd5R\xbb\x0f\x95\xff\x1b\xf1\x07\xfb|\xd9\xa0~\rm\xaf\x80\x95\xb7\xbew\x98A\x96\xa1\xa3\x91=_+\x8e\xd0\xa0/@}\x9e\xd9\xeb\x98Gm>\x1ea\xcb\x9e,\x15\x98\xd8\x81\x95~|\xc0\xcaaB\x814\xa3\x9b\x80\x0ctl\x85#\xdb3\xe7Qr\xb1\xeb\xe9\xa2\x9a\xec<\xd3N|&$A\xcf\n\xb8\xd7Q\xdf\xd0\x0b\xf6\xfe\xea\x1aM\xf4\xc1\xc4\xf7\x8f\x893=9\x8ed\xe4\xa9\x08?5l\xfd\x1d\xc3P\x1f\x9c-\xb2\xc7\xe3zG\x86\x93\r\x88\xb2%\xe7\xff\xb3@\xb7\xddp\xef\xf3\xe0\xe0o\xe8\x11o\xb0&\xdd\xdcak\x01u\x19\x0bT\xffX\x85<\x9a\xce\xb5m\x14R7\xe6\xcc\xd9h\xf4\x0b$Vv\xe5.P?P\x1e@1\x9b\xa6\'\x80_\x9f\xea\xd1\xf0\xcb\xdb\xc1\x8b\xf3\x98W\x8f\x9d\x8a\xedk7\x83\x89\x8a\xee\xb9Z\x83\x00\x85\x16\xe5\x1c<A\xa9\xee\xe8\x04\x1a\xdc\xc4\xe2K\x02\xf4\xab\x9f\x93.M\xc6\xa7\xcb \xf0\xcd\x86m\x11\x89[dn\xc7PP\xb1\xf67\x9c\x83\xc2_\xe7oHSpT\xaa\x8f\x1c\xdc!\xdc\xd4A\xfe<$\xc7.\x9e\x9d\x7f\x12v0\xc4\xf8\xae\x7f\xc2\x9b!\x016\xd7!\xf7\x15\x82d \x92!N\xd8O>\xe2\xc5[\x94R<\xeaj\xab\xeb\x1d\xc0\x90\x98\xd4\xa2\x17\x1c4"\xed\r\xf9&\xc2\xef\xc6\x8c\xfc\x16\xf2\xda\x9a\xee\x81\x16ED$3\x8c\x12\xf1 \r\xb1\xf2ot\xa4\xd2\x14\xc3\x19\xba\xe6\x8d\xf4d\xdf\xd69\xfe\xc3\x0c\xf48\xe225\x03(\x03H<\xb8\xba\xe1i\xac\xd18j!.`\xec\x80\xa0$\x9a\xd7\x01\x86<\xef\xbbU\x0b\xf4\xe83@,\xa5\xaa*\xe8\x84\x85\x06=l\xbbY\xc7n\x1d\xe2F\xc2\x84\xf0Xa\xa2\xcd\x08\x9dQ\xa6\x9fI\xdbu2\xfc,\xcd\x08\x03\xc7\x05b\x90\x0fu\x1e\x17\xbf\xe8\xa8\x835\xdc\x0c\x107\xd6\x9f\xc3k\xc3c>\x1a\xde$\t')

	fake.md5(raw_output=False)
	# '6559ce3f8aa0800a866367f5a8eb6ed3'

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

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '7ae137bb068ed344df8f091a4a9d05f525277163c0b882418c4b58a5d7fff40c'

	fake.uuid4()
	# '36fbce9f-dd5b-86c0-8545-145fe1455954'

	fake.language_code()
	# u'mi'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Freitas'

	fake.name_female()
	# u'L\xedvia Nascimento'

	fake.prefix_male()
	# u'Sr.'

	fake.prefix()
	# u'Sra.'

	fake.name()
	# u'Helena da Cunha'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Pedro Miguel Foga\xe7a'

	fake.first_name()
	# u'Ana L\xedvia'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Alexandre'

	fake.first_name_female()
	# u'Ana Luiza'

	fake.last_name_female()
	# u'Cunha'

	fake.last_name()
	# u'da Cruz'

	fake.prefix_female()
	# u'Srta.'

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

::

	fake.phone_number()
	# u'(041) 2974-9443'

	fake.msisdn()
	# u'5581091577174'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Viela de da Rocha, 76\nItaipu\n21579927 Souza do Amparo / ES',
	#     'birthdate': datetime.date(2009, 4, 16),
	#     'mail': u'carvalhoeduarda@uol.com.br',
	#     'name': u'Raul Souza',
	#     'sex': 'M',
	#     'username': u'davi-luccapeixoto'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Pra\xe7a de Rocha, 73\nMadri\n02226-667 da Mata de Nogueira / TO',
	#     'birthdate': datetime.date(1929, 3, 6),
	#     'blood_group': 'B+',
	#     'company': u'Gon\xe7alves Monteiro Ltda.',
	#     'current_location': (Decimal('-78.604996'), Decimal('166.210900')),
	#     'job': u'Encanador',
	#     'mail': u'pedro-miguel08@hotmail.com',
	#     'name': u'Eduarda Foga\xe7a',
	#     'residence': u'Esplanada de da Luz, 76\nBarreiro\n64675-044 Freitas / PB',
	#     'sex': 'F',
	#     'ssn': u'10845279602',
	#     'username': u'nviana',
	#     'website': [   u'http://www.goncalves.net/',
	#                    u'https://lopes.br/',
	#                    u'https://duarte.br/',
	#                    u'https://www.araujo.br/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(1997, 12, 10, 5, 40, 9),
	#     -409346426.0,
	#     Decimal('-594.49174'),
	#     u'http://www.da.com/home/',
	#     u'PVBhlywbpgAIlJWuvAqF',
	#     u'VHxHNhGqzFRsrdhZklZb',
	#     datetime.datetime(1980, 4, 26, 0, 23, 18),
	#     u'ibluPMaIuCMhCvUxotgh',
	#     u'rWaUeSmOHeMVepSkCZJu',
	#     u'zppraAjKjHBwKHmsQavQ',
	#     u'scttphkXmkcMlWzJagao',
	#     u'vjMBiuOFiGsQFSuCIAch',
	#     -80910432115228.8]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'rOYrWkhHJUSCmSSIqXcl',
	#         783,
	#         u'ieeTImlLxHSCtwhSAQHz',
	#         u'ncLSACvLhRVGtuocPXCD',
	#         datetime.datetime(2012, 7, 9, 2, 8, 46),
	#         u'pHwrgxCcKrOjPZuYFCiq',
	#         Decimal('23075768.767'),
	#         u'CYTHgkFzMQUUhOVufzpH',
	#         u'lara54@cardoso.com',
	#         9456],
	#     {   u'at': Decimal('964796.3648'),
	#         u'commodi': datetime.datetime(2014, 5, 13, 15, 33, 1),
	#         u'debitis': Decimal('-6637702374.2'),
	#         u'illum': 1083,
	#         u'iusto': u'http://www.rezende.net/register.htm',
	#         u'mollitia': u'http://nogueira.com/author.jsp',
	#         u'nostrum': 9288,
	#         u'quaerat': u'bferreira@oliveira.br',
	#         u'quas': u'fFmUkSQDPxglbIXMVtOn',
	#         u'rem': 2332},
	#     {   u'a': {   7: 5747,
	#                   8: [850, u'QsTiWMdMSGpMTjBMHYbr', u'IaixEgvgaqqdseWkXktl'],
	#                   9: {   7: Decimal('-76546498027.2'),
	#                          8: -6209.709,
	#                          9: [8363, 163672.286213403]}},
	#         u'dolor': {   0: u'joao-lucas45@uol.com.br',
	#                       1: [   Decimal('-72234929273.0'),
	#                              u'rjesus@cardoso.com',
	#                              u'https://www.nunes.com/register/'],
	#                       2: {   0: u'http://www.teixeira.br/about.asp',
	#                              1: u'OBaGuoSTaBVlflmtXRgb',
	#                              2: [   u'http://moraes.com/explore/category/categories/homepage/',
	#                                     8852]}},
	#         u'est': {   3: Decimal('-62.483539'),
	#                     4: [   u'yurisilva@ig.com.br',
	#                            u'IEIwXkymuEYGSVUudouT',
	#                            datetime.datetime(1998, 6, 27, 6, 40, 30)],
	#                     5: {   3: datetime.datetime(1982, 5, 1, 20, 39, 30),
	#                            4: u'IHuvAyylXjsLcLpRWiAr',
	#                            5: [   u'eXupZunVYjBnOELyobnX',
	#                                   datetime.datetime(1972, 9, 9, 18, 33, 53)]}},
	#         u'illum': {   6: -176148.87,
	#                       7: [1042, u'XBlyhbgkqvnmpxFMaLub', 4996],
	#                       8: {   6: u'tHBumRaCfVYgCvwsjpmK',
	#                              7: u'xjAFzWZvEboQLeRaUeCK',
	#                              8: [   u'furhUqIfSexbqDPwSiDo',
	#                                     datetime.datetime(2007, 9, 19, 6, 8)]}},
	#         u'impedit': {   4: u'hJhywBQutyJyvRINdNvb',
	#                         5: [   u'eADJQGpddNynrnRPVlcj',
	#                                u'peixotoleandro@ig.com.br',
	#                                210971991.0],
	#                         6: {   4: datetime.datetime(1973, 9, 3, 14, 6, 22),
	#                                5: u'uiSbIkzwhycXtWRdYxhq',
	#                                6: [   58841459319591.6,
	#                                       u'UuNChBzLOXUDlohGhZOC']}},
	#         u'nisi': {   9: u'nkXEQpZdOiScGrviaAgD',
	#                      10: [   datetime.datetime(1996, 8, 28, 5, 28, 3),
	#                              -5.4079,
	#                              u'http://da.com/terms/'],
	#                      11: {   9: u'araujorafaela@rodrigues.br',
	#                              10: u'NggjqUFrmssDfaaUPbSC',
	#                              11: [   datetime.datetime(2016, 1, 11, 12, 17, 22),
	#                                      u'diogoalmeida@bol.com.br']}},
	#         u'perferendis': {   1: Decimal('-4349944945.0'),
	#                             2: [   0.897724478319,
	#                                    u'laurasouza@cardoso.com',
	#                                    u'iTkFGlppWsLuqrJXLDKI'],
	#                             3: {   1: Decimal('138.3913'),
	#                                    2: u'manuela32@moura.com',
	#                                    3: [   u'phtqLlXXUJiamTSywiFZ',
	#                                           u'XURPGDjaITffpsFmcYoU']}},
	#         u'vero': {   2: u'wJCRhnjmhIotdluxBaMy',
	#                      3: [   u'QzBdHbTQoWWaYYSrszhU',
	#                             u'IeXeFrlvZOtdPaAJzJGn',
	#                             u'xClMWZtcJytCvEnQSFHd'],
	#                      4: {   2: u'da-mataalexia@uol.com.br',
	#                             3: Decimal('588862853612'),
	#                             4: [u'LKGAqQscZukJjpCsoGdp', 399480281.6703]}},
	#         u'voluptatem': {   8: u'MsGQoRMfUBVybNhYgQLf',
	#                            9: [   u'CDEoUMTDZEJUkeVKvnmn',
	#                                   9155,
	#                                   -214294425594363.0],
	#                            10: {   8: 839,
	#                                    9: 5709,
	#                                    10: [   7006,
	#                                            datetime.datetime(2010, 1, 30, 18, 27, 10)]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'qOcmsDQKDXscMkWUNwhH',
	#     Decimal('-483891.159'),
	#     1551,
	#     -8399334610385.33,
	#     datetime.datetime(2011, 12, 8, 13, 48, 8),
	#     u'vMStAydjcqClIhMTBunB',
	#     u'WDMYIgrXqGjJDxTZpdDX',
	#     u'https://www.ribeiro.br/search/category/login.htm',
	#     u'yrhmjGyCEuJbcGYGkBTr']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'EosVYagoitUAKFAADEPF',
	#     Decimal('-575.403'),
	#     datetime.datetime(1979, 5, 3, 1, 25, 49),
	#     u'egoncalves@lima.com',
	#     u'http://da.com/',
	#     256,
	#     -564310312.9,
	#     1776,
	#     7187,
	#     4572)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('25041547486.3'), u'GmcXPkAEEmNIvWbzoNqc', datetime.datetime(1986, 9, 24, 4, 45, 42), 2982, u'https://barbosa.net/wp-content/app/wp-content/login/', 3373, Decimal('-6866.0'), u'ELTfQxZHwzCKfaALpKsX', 7523, u'http://viana.br/list/privacy.htm', u'ZJBBaOiGQFyiomZLLBXF', Decimal('2.94118452679E+13'), Decimal('94672272511.0')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ab': Decimal('-61.5121'),
	#     u'dicta': u'https://mendes.br/about/',
	#     u'dolore': Decimal('-3724547784.87'),
	#     u'ex': datetime.datetime(2000, 9, 19, 8, 23, 44),
	#     u'ipsum': u'https://almeida.br/posts/app/tags/main.html',
	#     u'mollitia': u'moreirarenan@pereira.com',
	#     u'neque': 915590102797.71,
	#     u'quas': u'DGfcyAKkwmISSXmczRSu',
	#     u'quasi': u'da-conceicaorafaela@uol.com.br',
	#     u'ratione': u'yCRHiaYUZjKZAPmQrRMy',
	#     u'suscipit': u'VUkyAasKsMepNyIvarGJ'}

	fake.pyint()
	# 2817

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

::

	fake.cpf()
	# u'067.821.435-26'

	fake.ssn()
	# u'13027569821'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; sd-IN; rv:1.9.1.20) Gecko/2019-02-24 15:10:44 Firefox/3.6.15'

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

	fake.opera()
	# u'Opera/8.25.(Windows CE; pap-CW) Presto/2.9.182 Version/12.00'

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

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

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

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5321 (KHTML, like Gecko) Chrome/35.0.872.0 Safari/5321'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/535.41.6 (KHTML, like Gecko) Version/4.0 Safari/535.41.6'
