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

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

::

	fake.estado_nome()
	# u'Rio de Janeiro'

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

	fake.street_name()
	# u'Pra\xe7a de Ferreira'

	fake.street_prefix()
	# u'Feira'

	fake.address()
	# u'Trecho de Alves\nAl\xedpio De Melo\n04323-196 Ribeiro / PR'

	fake.street_address()
	# u'Alameda Rocha, 4'

	fake.bairro()
	# u'Casa Branca'

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

	fake.country()
	# u'Turquia'

	fake.estado_sigla()
	# u'MG'

	fake.street_suffix()
	# u'Street'

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

	fake.estado()
	# (u'AL', u'Alagoas')

	fake.city_suffix()
	# u'Grande'

	fake.building_number()
	# u'31'

	fake.country_code()
	# u'GM'

	fake.city()
	# u'Rodrigues Verde'

	fake.postcode()
	# u'23966492'

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

::

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

	fake.ean13()
	# u'4191048102170'

	fake.ean8()
	# u'02513034'

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

::

	fake.rgb_css_color()
	# u'rgb(251,221,213)'

	fake.color_name()
	# u'LightGray'

	fake.rgb_color_list()
	# (195, 248, 215)

	fake.rgb_color()
	# u'249,210,109'

	fake.safe_hex_color()
	# u'#bbbb00'

	fake.safe_color_name()
	# u'navy'

	fake.hex_color()
	# u'#f198f0'

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

::

	fake.company()
	# u'Cunha'

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

	fake.catch_phrase_verb()
	# u'de conseguir'

	fake.catch_phrase()
	# u'A liberdade de inovar sem preocupa\xe7\xe3o'

	fake.catch_phrase_noun()
	# u'a certeza'

	fake.catch_phrase_attribute()
	# u'mais rapidamente'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nOlivia Ribeiro\n6011777491392186 01/24\nCVC: 246\n'

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

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

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

::

	fake.currency_code()
	# 'CLP'

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

::

	fake.date_time_ad()
	# datetime.datetime(547, 6, 13, 16, 48, 58)

	fake.month()
	# '05'

	fake.am_pm()
	# 'AM'

	fake.timezone()
	# u'Europe/Bratislava'

	fake.iso8601()
	# '1992-02-14T13:24:32'

	fake.date_time()
	# datetime(1977, 1, 17, 17, 7, 20)

	fake.month_name()
	# 'February'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 2, 18, 18, 6, 46)

	fake.unix_time()
	# 622157968

	fake.day_of_week()
	# 'Tuesday'

	fake.day_of_month()
	# '14'

	fake.time(pattern="%H:%M:%S")
	# '01:32:41'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1987, 2, 15, 0, 48, 31)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 30, 4, 57, 14)

	fake.year()
	# '2012'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None)
	# datetime(2015, 11, 30, 15, 31, 26)

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2013, 6, 2, 2, 48, 7)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2013, 7, 26, 19, 17, 55)

	fake.century()
	# u'VIII'

	fake.date(pattern="%Y-%m-%d")
	# '1993-10-04'

	fake.time_delta()
	# datetime.timedelta(4729, 47896)

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

::

	fake.mime_type(category=None)
	# u'video/x-matroska'

	fake.file_name(category=None, extension=None)
	# u'consequuntur.css'

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

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

::

	fake.ipv4()
	# u'86.9.205.197'

	fake.url()
	# u'http://barbosa.br/'

	fake.company_email()
	# u'mariana.ferreira@azevedo.com'

	fake.uri()
	# u'http://santos.com/'

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

	fake.image_url(width=None, height=None)
	# u'http://dummyimage.com/187x855'

	fake.tld()
	# u'net'

	fake.free_email()
	# u'theo.melo@hotmail.com'

	fake.slug(*args, **kwargs)
	# u'iure-dicta-quia'

	fake.free_email_domain()
	# u'uol.com.br'

	fake.domain_name()
	# u'rodrigues.br'

	fake.uri_extension()
	# u'.html'

	fake.ipv6()
	# u'b557:66ca:f252:807d:d3c4:147b:ac65:2767'

	fake.safe_email()
	# u'uazevedo@example.com'

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

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

	fake.email()
	# u'isabella.oliveira@barros.com'

	fake.uri_page()
	# u'author'

	fake.mac_address()
	# u'09:49:aa:89:72:11'

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

::

	fake.job()
	# 'Teacher, special educational needs'

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

::

	fake.text(max_nb_chars=200)
	# u'Doloribus minus labore inventore. Aperiam illum cum velit porro. Fugit rem voluptas qui. Fuga qui sint accusantium suscipit eius aspernatur.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Quis minima neque nisi tempora vero.'

	fake.word()
	# u'labore'

	fake.paragraphs(nb=3)
	# [   u'Odit esse occaecati quis hic delectus provident vero. Ipsa vel ut ad. Fuga adipisci ex praesentium quo pariatur quisquam.',
	#     u'Eos occaecati amet voluptas sed odit. Quae nobis nemo ab ab quasi fuga. Itaque quis enim enim eum et perferendis. Suscipit quaerat voluptas ducimus numquam.',
	#     u'Maxime sint ut facilis et. Sequi doloremque ducimus autem molestiae. Aut fugit error aliquid id.']

	fake.words(nb=3)
	# [u'sit', u'voluptas', u'repellendus']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Provident ut reiciendis sint placeat qui assumenda molestias. Iure laboriosam suscipit accusamus cumque. Repellat et sit sit et tenetur consequatur. Qui consequatur ducimus reiciendis.'

	fake.sentences(nb=3)
	# [   u'Dolore architecto voluptatum quidem aut nam.',
	#     u'Dolor distinctio facere consequatur voluptatibus.',
	#     u'Iste aut eos earum quibusdam sint.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'%KaaJ9TlQ&'

	fake.locale()
	# u'el_GT'

	fake.md5(raw_output=False)
	# '88644adb76f94cfc6af02e8b40041e5b'

	fake.sha1(raw_output=False)
	# '2b3f32a840853d6379aea235a03f3d2e7fd46399'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '8355bb3ce2e3be71bf1968dfe2b159e8ea03e714addc344f3ec6f2c9967f840d'

	fake.uuid4()
	# '25f05cd8-e7da-4219-8bfe-b45b97fe9deb'

	fake.language_code()
	# u'en'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Ferreira'

	fake.name_female()
	# u'Andr\xe9 Castro'

	fake.prefix_male()
	# u'do'

	fake.prefix()
	# u'de'

	fake.name()
	# u'Paulo Lima'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'Samuel Carvalho'

	fake.first_name()
	# u'Isabella'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'Carlos Eduardo'

	fake.first_name_female()
	# u'Juliana'

	fake.last_name_female()
	# u'Souza'

	fake.last_name()
	# u'Lima'

	fake.prefix_female()
	# u'da'

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

::

	fake.phone_number()
	# u'+55 21 7019-7901'

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

::

	fake.simple_profile()
	# {   'address': u'Via Cardoso, 7\nVila Nova Gameleira 3\xaa Se\xe7\xe3o\n55589784 Silva de Minas / DF',
	#     'birthdate': '2008-10-16',
	#     'mail': u'souza.milena@ig.com.br',
	#     'name': u'Catarina da Barros',
	#     'sex': 'M',
	#     'username': u'thales74'}

	fake.profile(fields=None)
	# {   'address': u'Passarela Souza, 16\nBar\xe3o Homem De Melo 1\xaa Se\xe7\xe3o\n06256211 Santos / SC',
	#     'birthdate': '1973-02-18',
	#     'blood_group': 'B+',
	#     'company': u'Correia - EI',
	#     'current_location': (Decimal('12.8620935'), Decimal('-103.983166')),
	#     'job': 'Presenter, broadcasting',
	#     'mail': u'dmartins@hotmail.com',
	#     'name': u'Mariane Castro',
	#     'residence': u'Rua Eduarda Barbosa, 1\nVila Engenho Nogueira\n02889-581 Castro do Campo / RR',
	#     'sex': 'F',
	#     'ssn': u'32194508651',
	#     'username': u'eduarda.lima',
	#     'website': [u'http://rodrigues.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime(2012, 5, 13, 23, 46, 14),
	#     -49161.904,
	#     u'http://www.lima.br/category.html',
	#     datetime(1993, 12, 1, 21, 54, 17),
	#     u'Voluptas omnis.',
	#     u'Maxime quos quia.',
	#     u'Rerum voluptatum ut.',
	#     u'Rerum incidunt.',
	#     468,
	#     datetime(1992, 4, 27, 23, 51, 13),
	#     u'Pariatur non.',
	#     u'fernandes.giovanna@yahoo.com.br',
	#     1306,
	#     411)

	fake.pystr(max_chars=20)
	# u'Est excepturi.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   6649,
	#         5979,
	#         u'http://ferreira.br/post/',
	#         u'Beatae commodi est.',
	#         datetime(1995, 11, 17, 0, 50, 1),
	#         -208855.94,
	#         u'Sed necessitatibus.',
	#         u'http://www.rocha.com/tag/terms.php',
	#         datetime(1997, 11, 26, 22, 36, 18),
	#         1600],
	#     {   u'accusantium': 316780425.48,
	#         u'aliquam': u'Consequatur nulla.',
	#         u'asperiores': u'Deleniti quia quia.',
	#         u'commodi': u'Eos ipsam.',
	#         u'illo': u'Optio sit.',
	#         u'ipsam': u'bferreira@arajo.br',
	#         u'qui': u'Illum repellat ut.',
	#         u'ullam': 7996,
	#         u'ut': Decimal('-861113.0')},
	#     {   u'aspernatur': {   1: 57394558541994.8,
	#                            2: [   u'http://www.gomes.org/',
	#                                   537.584385584,
	#                                   datetime(2001, 7, 15, 7, 50, 16)],
	#                            3: {   1: -373276383031725.0,
	#                                   2: -7002.25917,
	#                                   3: [   Decimal('62.7866038876'),
	#                                          datetime(1970, 2, 23, 5, 18, 32)]}},
	#         u'dolor': {   6: Decimal('-20365543051.0'),
	#                       7: [   u'Iusto expedita.',
	#                              datetime(1998, 9, 15, 21, 26, 14),
	#                              u'Architecto sit.'],
	#                       8: {   6: datetime(2010, 1, 23, 3, 30, 34),
	#                              7: u'diogo92@barbosa.org',
	#                              8: [   u'Vel voluptatibus.',
	#                                     u'Ut quia voluptas ut.']}},
	#         u'eum': {   8: u'Ea dolor qui libero.',
	#                     9: [   u'Veritatis.',
	#                            u'malves@bol.com.br',
	#                            u'http://cunha.com/category.html'],
	#                     10: {   8: 8432,
	#                             9: u'Porro non eius.',
	#                             10: [u'Ut et velit rerum.', 2971]}},
	#         u'quasi': {   7: datetime(1972, 2, 23, 21, 1, 58),
	#                       8: [   Decimal('3.17780074532E+14'),
	#                              datetime(1975, 8, 15, 5, 52, 1),
	#                              -68744389571028.0],
	#                       9: {   7: datetime(2005, 7, 19, 15, 58, 42),
	#                              8: -824871053452845.0,
	#                              9: [   1959,
	#                                     u'http://rocha.br/search/categories/category/login/']}},
	#         u'qui': {   3: Decimal('-523.872726429'),
	#                     4: [u'manuela35@gomes.com', u'Repellendus aut.', 6686],
	#                     5: {   3: u'Perferendis quo.',
	#                            4: u'Dolor et.',
	#                            5: [-5612607.5, u'Molestiae ut.']}},
	#         u'quisquam': {   4: u'http://www.melo.com/',
	#                          5: [   u'Repudiandae.',
	#                                 u'Ipsam id excepturi.',
	#                                 u'Nihil nihil modi.'],
	#                          6: {   4: u'Voluptas.',
	#                                 5: u'Totam iusto est.',
	#                                 6: [   u'brenda79@pereira.net',
	#                                        Decimal('519329.0')]}},
	#         u'sed': {   9: datetime(1978, 10, 2, 12, 1, 18),
	#                     10: [8.5487, u'Velit et quaerat.', u'Vero esse unde.'],
	#                     11: {   9: u'Rem sit ea non et.',
	#                             10: 55739553.0,
	#                             11: [   u'http://gomes.br/login.html',
	#                                     u'rocha.maria-sophia@ribeiro.br']}},
	#         u'ut': {   2: u'Quis rerum nemo in.',
	#                    3: [   u'Placeat eius et et.',
	#                           u'Nobis accusamus.',
	#                           u'Ab occaecati quo.'],
	#                    4: {   2: u'Quidem voluptatem.',
	#                           3: u'Nisi corporis.',
	#                           4: [u'http://dias.net/post/', u'Sint libero.']}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'Nulla consequuntur.',
	#     u'Dignissimos et sit.',
	#     u'Sequi beatae sed.',
	#     4597,
	#     u'Facere enim illo.',
	#     datetime(1994, 4, 19, 14, 7, 55),
	#     u'http://ferreira.com/tags/category/search/author/',
	#     7542,
	#     435445440353170.0,
	#     u'http://souza.br/main/tag/register.html',
	#     u'Quia in atque.',
	#     9349,
	#     u'http://dias.com/register.html']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'bcastro@ig.com.br',
	#     u'A ut assumenda.',
	#     u'Est ex tempore.',
	#     u'Voluptate dolorem.',
	#     Decimal('-74600.821126'),
	#     u'Corrupti quisquam.',
	#     u'Quae voluptates.',
	#     datetime(2015, 6, 29, 19, 15, 1),
	#     757895.208431246)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Iusto vitae quas.', datetime(2013, 4, 12, 23, 54, 22), 3627, u'Voluptatem suscipit.', u'Quos deleniti illum.', u'Fuga dolor eius.', u'http://martins.net/tags/index/', u'enzo.cunha@gomes.com', u'ana-laura93@martins.br', -600984259956784.0, u'Possimus et ea.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'alias': Decimal('-5.29595898888E+12'),
	#     u'aut': u'Dicta at rerum quia.',
	#     u'error': u'Et possimus in.',
	#     u'non': u'Suscipit nihil.',
	#     u'officia': 7423,
	#     u'quae': 8053903895024.0,
	#     u'reiciendis': u'Delectus harum.'}

	fake.pyint()
	# 9481

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

::

	fake.cpf()
	# u'309.254.861-24'

	fake.ssn()
	# u'80246953161'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/2015-09-09 20:23:28 Firefox/7.0'

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

	fake.opera()
	# u'Opera/8.39.(X11; Linux i686; it-IT) Presto/2.9.166 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_5) AppleWebKit/5342 (KHTML, like Gecko) Chrome/15.0.877.0 Safari/5342'

	fake.chrome()
	# u'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5311 (KHTML, like Gecko) Chrome/13.0.826.0 Safari/5311'

	fake.linux_processor()
	# u'x86_64'

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

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