Locale pt_BR¶
faker.providers.address
¶
- class faker.providers.address.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- address() str ¶
- Example:
‘791 Crist Parks, Sashabury, IL 86039-9874’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.address() ... 'Área Valentim Moraes, 56\nProvidencia\n93824-219 Nascimento Grande / MA' 'Viela Farias, 28\nMaria Helena\n59387-784 Novaes / AC' "Viaduto Alexandre Pimenta, 45\nVila Olhos D'água\n13933-287 Barros / MT" 'Sítio Ana Santos\nCasa Branca\n83989-471 Dias Verde / ES' 'Estação Andrade, 247\nBrasil Industrial\n20186848 Cunha / RO'
- administrative_unit() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.administrative_unit() ... 'Minas Gerais' 'São Paulo' 'Pará' 'Alagoas' 'Goiás'
- bairro() str ¶
Randomly returns a bairro (neighborhood) name. The names were taken from the city of Belo Horizonte - Minas Gerais :example: ‘Serra’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bairro() ... 'Bandeirantes' 'Mirante' 'Vila Santa Monica 2ª Seção' 'Fernão Dias' 'Nova Pampulha'
- building_number() str ¶
- Example:
‘791’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.building_number() ... '16' '88' '84' '49' '324'
- city() str ¶
- Example:
‘Sashabury’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city() ... 'Teixeira das Pedras' 'da Luz' 'Guerra de Viana' 'Mendes da Praia' 'Montenegro'
- city_suffix() str ¶
- Example:
‘town’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_suffix() ... 'das Flores' 'das Pedras' 'do Norte' 'Paulista' 'do Galho'
- country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country() ... 'Sérvia' 'Guernsey' 'Quiribáti' 'Tailândia' 'Iêmen'
- country_code(representation: str = 'alpha-2') str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country_code() ... 'MV' 'PS' 'NL' 'BB' 'IL'
- current_country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country() ... 'Brazil' 'Brazil' 'Brazil' 'Brazil' 'Brazil'
- current_country_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country_code() ... 'BR' 'BR' 'BR' 'BR' 'BR'
- estado() Tuple[str, str] ¶
Randomly returns a Brazilian State (‘sigla’ , ‘nome’). :example: (‘MG’ . ‘Minas Gerais’)
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.estado() ... ('MG', 'Minas Gerais') ('SP', 'São Paulo') ('PA', 'Pará') ('AL', 'Alagoas') ('GO', 'Goiás')
- estado_nome() str ¶
Randomly returns a Brazilian State Name :example: ‘Minas Gerais’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.estado_nome() ... 'Minas Gerais' 'São Paulo' 'Pará' 'Alagoas' 'Goiás'
- estado_sigla() str ¶
Randomly returns the abbreviation of a Brazilian State :example: ‘MG’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.estado_sigla() ... 'MG' 'SP' 'PA' 'AL' 'GO'
- neighborhood() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.neighborhood() ... 'Bandeirantes' 'Mirante' 'Vila Santa Monica 2ª Seção' 'Fernão Dias' 'Nova Pampulha'
- postcode(formatted: bool = True) str ¶
Randomly returns a postcode. :param formatted: True to allow formatted postcodes, else False (default True) :example formatted: ‘41224-212’ ‘83992-291’ ‘12324322’ :example raw: ‘43920231’ ‘34239530’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.postcode() ... '60487-647' '93824-219' '89241-157' '56593877' '08016-097'
- state() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state() ... 'Minas Gerais' 'São Paulo' 'Pará' 'Alagoas' 'Goiás'
- state_abbr() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state_abbr() ... 'MG' 'SP' 'PA' 'AL' 'GO'
- street_address() str ¶
- Example:
‘791 Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_address() ... 'Pátio Bruno da Luz, 576' 'Trecho Pedro Henrique Montenegro, 34' 'Vale da Cunha, 592' 'Campo de Rodrigues' 'Sítio Guilherme Fogaça, 45'
- street_name() str ¶
- Example:
‘Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_name() ... 'Pátio Bruno da Luz' 'Residencial de Guerra' 'Recanto Elisa Pacheco' 'Rodovia Carvalho' 'Conjunto Gabriel Pinto'
faker.providers.automotive
¶
- class faker.providers.automotive.pt_BR.Provider(generator: Any)¶
Bases:
Provider
Implement automotive provider for
pt_BR
locale.
faker.providers.color
¶
- class faker.providers.color.pt_BR.Provider(generator: Any)¶
Bases:
Provider
Implement color provider for
pt_BR
locale.- color(hue: str | float | int | Sequence[int] | None = None, luminosity: str | None = None, color_format: str = 'hex') str ¶
Generate a color in a human-friendly way.
Under the hood, this method first creates a color represented in the HSV color model and then converts it to the desired
color_format
. The argumenthue
controls the H value according to the following rules:If the value is a number from
0
to360
, it will serve as the H value of the generated color.If the value is a tuple/list of 2 numbers from 0 to 360, the color’s H value will be randomly selected from that range.
If the value is a valid string, the color’s H value will be randomly selected from the H range corresponding to the supplied string. Valid values are
'monochrome'
,'red'
,'orange'
,'yellow'
,'green'
,'blue'
,'purple'
, and'pink'
.
The argument
luminosity
influences both S and V values and is partially affected byhue
as well. The finer details of this relationship are somewhat involved, so please refer to the source code instead if you wish to dig deeper. To keep the interface simple, this argument either can be omitted or can accept the following string values:'bright'
,'dark'
,'light'
, or'random'
.The argument
color_format
controls in which color model the color is represented. Valid values are'hsv'
,'hsl'
,'rgb'
, or'hex'
(default).- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue='red') ... '#af2f33' '#e02141' '#ef6466' '#a80a14' '#ed9e95'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(luminosity='light') ... '#79c3e0' '#89ffa1' '#96cbf7' '#aafaff' '#e3f495'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=(100, 200), color_format='rgb') ... 'rgb(26, 155, 88)' 'rgb(9, 193, 49)' 'rgb(73, 229, 154)' 'rgb(107, 249, 166)' 'rgb(76, 204, 69)'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue='orange', luminosity='bright') ... '#efc332' '#edae65' '#d1861d' '#ffcc42' '#e09533'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=135, luminosity='dark', color_format='hsv') ... 'hsv(135, 96, 45)' 'hsv(135, 98, 57)' 'hsv(135, 94, 61)' 'hsv(135, 99, 47)' 'hsv(135, 94, 50)'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=(300, 20), luminosity='random', color_format='hsl') ... 'hsl(217, 94, 27)' 'hsl(40, 23, 54)' 'hsl(268, 100, 74)' 'hsl(175, 43, 31)' 'hsl(131, 47, 11)'
- color_hsl(hue: str | float | int | Sequence[int] | None = None, luminosity: str | None = None) Tuple[int, int, int] ¶
Generate a HSL color tuple in a human-friendly way.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color_hsl() ... (197, 57, 32) (132, 90, 39) (207, 76, 65) (183, 88, 33) (258, 62, 73)
- color_hsv(hue: str | float | int | Sequence[int] | None = None, luminosity: str | None = None) Tuple[int, int, int] ¶
Generate a HSV color tuple in a human-friendly way.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color_hsv() ... (197, 73, 51) (132, 95, 76) (207, 58, 92) (183, 94, 64) (258, 37, 90)
- color_name() str ¶
Generate a color name.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color_name() ... 'Vermelho enegrecido' 'Dourado escuro' 'Turquesa média' 'Feldspato' 'Amarelo ouro claro'
- color_rgb(hue: str | float | int | Sequence[int] | None = None, luminosity: str | None = None) Tuple[int, int, int] ¶
Generate a RGB color tuple of integers in a human-friendly way.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color_rgb() ... (35, 103, 130) (9, 193, 46) (98, 173, 234) (9, 155, 163) (170, 144, 229)
- color_rgb_float(hue: str | float | int | Sequence[int] | None = None, luminosity: str | None = None) Tuple[float, float, float] ¶
Generate a RGB color tuple of floats in a human-friendly way.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color_rgb_float() ... (0.13770000000000002, 0.4045149999999999, 0.51) (0.038000000000000034, 0.76, 0.18239999999999984) (0.3864000000000001, 0.6798800000000002, 0.92) (0.03840000000000004, 0.6099200000000001, 0.64) (0.6668999999999999, 0.5670000000000001, 0.9)
- hex_color() str ¶
Generate a color formatted as a hex triplet.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.hex_color() ... '#d82c08' '#629f70' '#c2094d' '#e3e707' '#6baa95'
- rgb_color() str ¶
Generate a color formatted as a comma-separated RGB value.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.rgb_color() ... '197,215,20' '132,248,207' '155,244,183' '111,71,144' '71,48,128'
- rgb_css_color() str ¶
Generate a color formatted as a CSS rgb() function.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.rgb_css_color() ... 'rgb(197,215,20)' 'rgb(132,248,207)' 'rgb(155,244,183)' 'rgb(111,71,144)' 'rgb(71,48,128)'
faker.providers.company
¶
- class faker.providers.company.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- bs() str ¶
- Example:
‘integrate extensible convergence’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bs() ... 'iterate integrated e-markets' 'integrate back-end mindshare' 'synthesize wireless content' 'syndicate synergistic applications' 'productize killer mindshare'
- catch_phrase() str ¶
- Example:
‘a segurança de evoluir sem preocupação’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase() ... 'O poder de conseguir com toda a tranquilidade' 'O poder de inovar sem preocupação' 'A vantagem de mudar em estado puro' 'A certeza de evoluir mais rapidamente' 'A possibilidade de evoluir com toda a tranquilidade'
- catch_phrase_attribute() str ¶
Returns a random catch phrase attribute.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase_attribute() ... 'naturalmente' 'naturalmente' 'de maneira eficaz' 'com toda a tranquilidade' 'em estado puro'
- catch_phrase_noun() str ¶
Returns a random catch phrase noun.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase_noun() ... 'o poder' 'o poder' 'a segurança' 'a certeza' 'a possibilidade'
- catch_phrase_verb() str ¶
Returns a random catch phrase verb.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase_verb() ... 'de atingir seus objetivos' 'de atingir seus objetivos' 'de conseguir' 'de inovar' 'de realizar seus sonhos'
- cnpj() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cnpj() ... '69.024.351/0001-39' '75.341.280/0001-09' '94.270.561/0001-54' '81.532.497/0001-90' '79.408.652/0001-10'
- company() str ¶
- Example:
‘Acme Ltd’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company() ... 'Teixeira' 'Aparecida' 'Moraes' 'Guerra' 'Mendes'
faker.providers.currency
¶
- class faker.providers.currency.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- cryptocurrency() Tuple[str, str] ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency() ... ('XRP', 'Ripple') ('STC', 'SwiftCoin') ('BC', 'BlackCoin') ('NXT', 'Nxt') ('IOTA', 'IOTA')
- cryptocurrency_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency_code() ... 'XRP' 'STC' 'BC' 'NXT' 'IOTA'
- cryptocurrency_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency_name() ... 'Ripple' 'SwiftCoin' 'BlackCoin' 'Nxt' 'IOTA'
- currency() Tuple[str, str] ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency() ... ('MWK', 'Malawian kwacha') ('NZD', 'New Zealand dollar') ('BAM', 'Bosnia and Herzegovina convertible mark') ('IRR', 'Iranian rial') ('SPL', 'Seborga luigino')
- currency_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency_code() ... 'MWK' 'NZD' 'BAM' 'IRR' 'SPL'
- currency_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency_name() ... 'Malawian kwacha' 'New Zealand dollar' 'Bosnia and Herzegovina convertible mark' 'Iranian rial' 'Seborga luigino'
faker.providers.date_time
¶
- class faker.providers.date_time.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- am_pm() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.am_pm() ... 'AM' 'AM' 'PM' 'PM' 'AM'
- century() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.century() ... 'XIII' 'XIV' 'II' 'IX' 'XVII'
- date(pattern: str = '%Y-%m-%d', end_datetime: date | datetime | timedelta | str | int | None = None) str ¶
Get a date string between January 1, 1970 and now.
- Parameters:
pattern – Format of the date (year-month-day by default)
end_datetime – A
DateParseType
. Defaults to the current date and time
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date() ... '2016-08-20' '2011-11-11' '1993-03-24' '1984-04-19' '1998-03-28'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date(pattern='%m/%d/%Y') ... '08/20/2016' '11/11/2011' '03/24/1993' '04/19/1984' '03/28/1998'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date(end_datetime='+1w') ... '2016-08-26' '2011-11-16' '1993-03-27' '1984-04-21' '1998-03-31'
- date_between(start_date: date | datetime | timedelta | str | int = '-30y', end_date: date | datetime | timedelta | str | int = 'today') date ¶
Get a Date object based on a random date between two given dates. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – A
DateParseType
. Defaults to 30 years agoend_date – A
DateParseType
. Defaults to"today"
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between() ... datetime.date(2020, 7, 23) datetime.date(2017, 12, 18) datetime.date(2007, 11, 4) datetime.date(2002, 12, 29) datetime.date(2010, 7, 25)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between(start_date='-1w') ... datetime.date(2025, 3, 22) datetime.date(2025, 3, 22) datetime.date(2025, 3, 19) datetime.date(2025, 3, 18) datetime.date(2025, 3, 20)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between(start_date="-1y", end_date="+1w") ... datetime.date(2025, 1, 31) datetime.date(2024, 12, 30) datetime.date(2024, 8, 26) datetime.date(2024, 6, 27) datetime.date(2024, 9, 29)
- date_between_dates(date_start: date | datetime | timedelta | str | int | None = None, date_end: date | datetime | timedelta | str | int | None = None) date ¶
Get a random date between the two given dates.
- Parameters:
date_start – A
DateParseType
. Defaults to the UNIX epochdate_end – A
DateParseType
. Defaults to the current date and time
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between_dates() ... datetime.date(2025, 3, 24) datetime.date(2025, 3, 24) datetime.date(2025, 3, 24) datetime.date(2025, 3, 24) datetime.date(2025, 3, 24)
- date_object(end_datetime: datetime | None = None) date ¶
Get a date object between January 1, 1970 and now
- Parameters:
end_datetime – A
DateParseType
. Defaults to the current date and time- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_object() ... datetime.date(2016, 8, 20) datetime.date(2011, 11, 11) datetime.date(1993, 3, 24) datetime.date(1984, 4, 19) datetime.date(1998, 3, 28)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_object(end_datetime='+1w') ... datetime.date(2016, 8, 26) datetime.date(2011, 11, 16) datetime.date(1993, 3, 27) datetime.date(1984, 4, 21) datetime.date(1998, 3, 31)
- date_of_birth(tzinfo: tzinfo | None = None, minimum_age: int = 0, maximum_age: int = 115) date ¶
Generate a random date of birth represented as a Date object, constrained by optional miminimum_age and maximum_age parameters.
- Parameters:
tzinfo – Defaults to None.
minimum_age – Defaults to
0
.maximum_age – Defaults to
115
.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_of_birth() ... datetime.date(2007, 3, 7) datetime.date(1997, 2, 23) datetime.date(1958, 1, 5) datetime.date(1939, 4, 6) datetime.date(1968, 7, 14)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_of_birth(minimum_age=30, maximum_age=50) ... datetime.date(1991, 12, 16) datetime.date(1990, 2, 21) datetime.date(1983, 1, 21) datetime.date(1979, 8, 30) datetime.date(1984, 12, 17)
- date_this_century(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current century.
- Parameters:
before_today – include days in current century before today. Defaults to True
after_today – include days in current century after today. Defaults to False
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_century() ... datetime.date(2021, 4, 20) datetime.date(2019, 2, 13) datetime.date(2010, 8, 11) datetime.date(2006, 7, 13) datetime.date(2012, 11, 23)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_century(before_today=False, after_today=True) ... datetime.date(2088, 5, 14) datetime.date(2081, 11, 25) datetime.date(2056, 9, 3) datetime.date(2044, 8, 2) datetime.date(2063, 6, 16)
- date_this_decade(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the decade year.
- Parameters:
before_today – include days in current decade before today. Defaults to True
after_today – include days in current decade after today. Defaults to False
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_decade() ... datetime.date(2024, 5, 31) datetime.date(2023, 12, 17) datetime.date(2022, 3, 13) datetime.date(2021, 5, 9) datetime.date(2022, 9, 3)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_decade(before_today=False, after_today=True) ... datetime.date(2029, 4, 4) datetime.date(2028, 11, 4) datetime.date(2027, 3, 27) datetime.date(2026, 6, 18) datetime.date(2027, 9, 1)
- date_this_month(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current month.
- Parameters:
before_today – include days in current month before today. Defaults to True
after_today – include days in current month after today. Defaults to False
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_month() ... datetime.date(2025, 3, 20) datetime.date(2025, 3, 18) datetime.date(2025, 3, 10) datetime.date(2025, 3, 6) datetime.date(2025, 3, 12)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_month(before_today=False, after_today=True) ... datetime.date(2025, 3, 30) datetime.date(2025, 3, 30) datetime.date(2025, 3, 27) datetime.date(2025, 3, 26) datetime.date(2025, 3, 28)
- date_this_year(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current year.
- Parameters:
before_today – include days in current year before today. Defaults to True
after_today – include days in current year after today. Defaults to False
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_year() ... datetime.date(2025, 3, 11) datetime.date(2025, 3, 4) datetime.date(2025, 2, 4) datetime.date(2025, 1, 22) datetime.date(2025, 2, 11)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_year(before_today=False, after_today=True) ... datetime.date(2025, 11, 17) datetime.date(2025, 10, 24) datetime.date(2025, 7, 21) datetime.date(2025, 6, 5) datetime.date(2025, 8, 15)
- date_time(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None) datetime ¶
Get a datetime object for a date between January 1, 1970 and a specified end_datetime
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
end_datetime – A
DateParseType
. Defaults to the current date and time
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time() ... datetime.datetime(2016, 8, 20, 9, 43, 28, 805003) datetime.datetime(2011, 11, 11, 5, 4, 52, 124894) datetime.datetime(1993, 3, 24, 15, 13, 20, 73582) datetime.datetime(1984, 4, 19, 18, 50, 38, 280247) datetime.datetime(1998, 3, 28, 6, 27, 0, 166511)
- date_time_ad(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None, start_datetime: date | datetime | timedelta | str | int | None = None) datetime ¶
Get a datetime object for a date between January 1, 0001 and now
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
end_datetime – A
DateParseType
. Defaults to the current date and timestart_datetime – A
DateParseType
. Defaults to UNIX timestamp-62135596800
,
equivalent to 0001-01-01 00:00:00 UTC
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_ad() ... datetime.datetime(1710, 4, 21, 12, 18, 24, 274857) datetime.datetime(1535, 4, 11, 5, 11, 6, 8263) datetime.datetime(852, 5, 1, 17, 36, 12, 117577) datetime.datetime(525, 2, 8, 20, 57, 19, 250099) datetime.datetime(1035, 12, 9, 14, 52, 41, 158714)
- date_time_between(start_date: date | datetime | timedelta | str | int = '-30y', end_date: date | datetime | timedelta | str | int = 'now', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between two given dates. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – A
DateParseType
. Defaults to 30 years agoend_date – A
DateParseType
. Defaults to"now"
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between() ... datetime.datetime(2020, 7, 23, 23, 26, 12, 236214) datetime.datetime(2017, 12, 19, 12, 50, 58, 808743) datetime.datetime(2007, 11, 5, 18, 20, 39, 361449) datetime.datetime(2002, 12, 30, 11, 31, 15, 49189) datetime.datetime(2010, 7, 26, 14, 48, 11, 171082)
- date_time_between_dates(datetime_start: date | datetime | timedelta | str | int | None = None, datetime_end: date | datetime | timedelta | str | int | None = None, tzinfo: tzinfo | None = None) datetime ¶
Get a random datetime between the two given datetimes.
- Parameters:
datetime_start – A
DateParseType
. Defaults to the UNIX epochdatetime_end – A
DateParseType
. Defaults to the current date and timetzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates() ... datetime.datetime(2025, 3, 24, 16, 15, 29) datetime.datetime(2025, 3, 24, 16, 15, 29) datetime.datetime(2025, 3, 24, 16, 15, 29) datetime.datetime(2025, 3, 24, 16, 15, 29) datetime.datetime(2025, 3, 24, 16, 15, 29)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates(datetime_start='-30y', datetime_end='now') ... datetime.datetime(2020, 7, 23, 23, 26, 12, 236214) datetime.datetime(2017, 12, 19, 12, 50, 58, 808743) datetime.datetime(2007, 11, 5, 18, 20, 39, 361449) datetime.datetime(2002, 12, 30, 11, 31, 15, 49189) datetime.datetime(2010, 7, 26, 14, 48, 11, 171082)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates(datetime_start='now', datetime_end='+1y') ... datetime.datetime(2026, 1, 27, 2, 15, 26, 441207) datetime.datetime(2025, 12, 26, 12, 18, 15, 993625) datetime.datetime(2025, 8, 25, 6, 53, 15, 345382) datetime.datetime(2025, 6, 27, 5, 51, 36, 534973) datetime.datetime(2025, 9, 27, 9, 58, 10, 405703)
- date_time_this_century(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current century.
- Parameters:
before_now – include days in current century before today. Defaults to True
after_now – include days in current century after today. Defaults to False
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_century() ... datetime.datetime(2021, 4, 21, 1, 47, 57, 178383) datetime.datetime(2019, 2, 14, 7, 19, 39, 768234) datetime.datetime(2010, 8, 11, 10, 21, 17, 189049) datetime.datetime(2006, 7, 13, 20, 1, 26, 312503) datetime.datetime(2012, 11, 24, 5, 33, 32, 822614)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_century(before_now=False, after_now=True) ... datetime.datetime(2088, 5, 14, 2, 39, 13, 990303) datetime.datetime(2081, 11, 25, 15, 45, 35, 854655) datetime.datetime(2056, 9, 3, 14, 57, 3, 733698) datetime.datetime(2044, 8, 2, 18, 39, 26, 592019) datetime.datetime(2063, 6, 16, 18, 7, 10, 883586)
- date_time_this_decade(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the decade year.
- Parameters:
before_now – include days in current decade before today. Defaults to True
after_now – include days in current decade after today. Defaults to False
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_decade() ... datetime.datetime(2024, 5, 31, 13, 45, 36, 744646) datetime.datetime(2023, 12, 18, 10, 45, 42, 443656) datetime.datetime(2022, 3, 14, 3, 44, 42, 804500) datetime.datetime(2021, 5, 9, 10, 44, 21, 531599) datetime.datetime(2022, 9, 3, 8, 52, 29, 881374)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_decade(before_now=False, after_now=True) ... datetime.datetime(2029, 4, 4, 18, 39, 1, 496209) datetime.datetime(2028, 11, 5, 0, 52, 28, 848840) datetime.datetime(2027, 3, 27, 20, 51, 52, 80067) datetime.datetime(2026, 6, 19, 1, 16, 5, 62466) datetime.datetime(2027, 9, 1, 23, 51, 37, 657209)
- date_time_this_month(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current month.
- Parameters:
before_now – include days in current month before today. Defaults to True
after_now – include days in current month after today. Defaults to False
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_month() ... datetime.datetime(2025, 3, 20, 23, 50, 58, 269898) datetime.datetime(2025, 3, 18, 22, 42, 49, 302773) datetime.datetime(2025, 3, 10, 22, 59, 35, 479481) datetime.datetime(2025, 3, 7, 3, 7, 53, 504660) datetime.datetime(2025, 3, 13, 2, 32, 9, 524471)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_month(before_now=False, after_now=True) ... datetime.datetime(2025, 3, 30, 20, 39, 30, 217226) datetime.datetime(2025, 3, 30, 5, 27, 44, 770063) datetime.datetime(2025, 3, 27, 18, 10, 12, 442616) datetime.datetime(2025, 3, 26, 13, 45, 38, 119325) datetime.datetime(2025, 3, 28, 10, 6, 37, 689243)
- date_time_this_year(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current year.
- Parameters:
before_now – include days in current year before today. Defaults to True
after_now – include days in current year after today. Defaults to False
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_year() ... datetime.datetime(2025, 3, 11, 19, 33, 3, 100233) datetime.datetime(2025, 3, 4, 15, 58, 37, 667201) datetime.datetime(2025, 2, 4, 18, 31, 21, 169925) datetime.datetime(2025, 1, 22, 9, 45, 27, 530953) datetime.datetime(2025, 2, 12, 6, 30, 3, 544119)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_year(before_now=False, after_now=True) ... datetime.datetime(2025, 11, 18, 1, 50, 33, 409461) datetime.datetime(2025, 10, 24, 15, 57, 41, 383924) datetime.datetime(2025, 7, 21, 9, 56, 33, 203157) datetime.datetime(2025, 6, 5, 18, 36, 40, 106285) datetime.datetime(2025, 8, 16, 0, 31, 25, 68961)
- day_of_month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_month() ... '20' '11' '24' '19' '28'
- day_of_week()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_week() ... 'sábado' 'sexta-feira' 'quarta-feira' 'quinta-feira' 'sábado'
- future_date(end_date: date | datetime | timedelta | str | int = '+30d') date ¶
Get a Date object based on a random date between 1 day from now and a given date.
- Parameters:
end_date – A
DateParseType
. Defaults to"+30d"
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_date() ... datetime.date(2025, 4, 18) datetime.date(2025, 4, 15) datetime.date(2025, 4, 6) datetime.date(2025, 4, 1) datetime.date(2025, 4, 8)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_date(end_date='+1y') ... datetime.date(2026, 1, 26) datetime.date(2025, 12, 25) datetime.date(2025, 8, 25) datetime.date(2025, 6, 27) datetime.date(2025, 9, 27)
- future_datetime(end_date: date | datetime | timedelta | str | int = '+30d', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between 1 second form now and a given date.
- Parameters:
end_date – A
DateParseType
. Defaults to"+30d"
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_datetime() ... datetime.datetime(2025, 4, 19, 0, 14, 30, 594731) datetime.datetime(2025, 4, 16, 9, 59, 7, 54467) datetime.datetime(2025, 4, 6, 7, 4, 11, 116942) datetime.datetime(2025, 4, 1, 10, 40, 41, 957843) datetime.datetime(2025, 4, 9, 0, 22, 33, 566513)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_datetime(end_date='+1y') ... datetime.datetime(2026, 1, 27, 2, 15, 26, 596785) datetime.datetime(2025, 12, 26, 12, 18, 16, 235670) datetime.datetime(2025, 8, 25, 6, 53, 15, 924810) datetime.datetime(2025, 6, 27, 5, 51, 37, 276056) datetime.datetime(2025, 9, 27, 9, 58, 10, 894428)
- iso8601(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None, sep: str = 'T', timespec: str = 'auto') str ¶
Get an ISO 8601 string for a datetime between the UNIX epoch and now.
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
end_datetime – A
DateParseType
. Defaults to the current date and timesep – separator between date and time, defaults to ‘T’
timespec – format specifier for the time part, defaults to ‘auto’ - see datetime.isoformat() documentation
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iso8601() ... '2016-08-20T09:43:28.805003' '2011-11-11T05:04:52.124894' '1993-03-24T15:13:20.073582' '1984-04-19T18:50:38.280247' '1998-03-28T06:27:00.166511'
- month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month() ... '08' '11' '03' '04' '03'
- month_name()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month_name() ... 'agosto' 'novembro' 'março' 'abril' 'março'
- past_date(start_date: date | datetime | timedelta | str | int = '-30d', tzinfo: tzinfo | None = None) date ¶
Get a Date object based on a random date between a given date and 1 day ago.
- Parameters:
start_date – A
DateParseType
. Defaults to"-30d"
tzinfo – timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_date() ... datetime.date(2025, 3, 18) datetime.date(2025, 3, 15) datetime.date(2025, 3, 6) datetime.date(2025, 3, 1) datetime.date(2025, 3, 8)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_date(start_date='-1y') ... datetime.date(2025, 1, 25) datetime.date(2024, 12, 24) datetime.date(2024, 8, 23) datetime.date(2024, 6, 25) datetime.date(2024, 9, 25)
- past_datetime(start_date: date | datetime | timedelta | str | int = '-30d', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between a given date and 1 second ago.
- Parameters:
start_date – A
DateParseType
. Defaults to"-30d"
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1999-02-02 11:42:52’)
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_datetime() ... datetime.datetime(2025, 3, 20, 0, 14, 29, 594731) datetime.datetime(2025, 3, 17, 9, 59, 6, 54467) datetime.datetime(2025, 3, 7, 7, 4, 10, 116942) datetime.datetime(2025, 3, 2, 10, 40, 40, 957843) datetime.datetime(2025, 3, 10, 0, 22, 32, 566513)
- pytimezone(*args: Any, **kwargs: Any) tzinfo | None ¶
Generate a random timezone (see
faker.timezone
for any args) and return a Python object usable as atzinfo
fordatetime
or other fakers.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.pytimezone() ... zoneinfo.ZoneInfo(key='Indian/Maldives') zoneinfo.ZoneInfo(key='America/Barbados') zoneinfo.ZoneInfo(key='Europe/Stockholm') zoneinfo.ZoneInfo(key='Africa/Windhoek') zoneinfo.ZoneInfo(key='Asia/Qatar')
- time(pattern: str = '%H:%M:%S', end_datetime: date | datetime | timedelta | str | int | None = None) str ¶
Get a time string (24h format by default)
- Parameters:
pattern – format
end_datetime – A
DateParseType
. Defaults to the current date and time
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time() ... '09:43:28' '05:04:52' '15:13:20' '18:50:38' '06:27:00'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time(pattern='%I:%M %p') ... '09:43 AM' '05:04 AM' '03:13 PM' '06:50 PM' '06:27 AM'
- time_delta(end_datetime: date | datetime | timedelta | str | int | None = None) timedelta ¶
Get a random timedelta object of duration between the current date and time and end_datetime
- Parameters:
end_datetime – A
DateParseType
. Defaults to the current date and time- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_delta() ... datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_delta(end_datetime='+30h') ... datetime.timedelta(days=1, seconds=4797, microseconds=559965) datetime.timedelta(seconds=81859, microseconds=75518) datetime.timedelta(seconds=45421, microseconds=730730) datetime.timedelta(seconds=27963, microseconds=9032) datetime.timedelta(seconds=55217, microseconds=669908)
- time_object(end_datetime: date | datetime | timedelta | str | int | None = None) time ¶
Get a time object
- Parameters:
end_datetime – A
DateParseType
. Defaults to the current date and time- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_object() ... datetime.time(9, 43, 28, 805003) datetime.time(5, 4, 52, 124894) datetime.time(15, 13, 20, 73582) datetime.time(18, 50, 38, 280247) datetime.time(6, 27, 0, 166511)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_object(end_datetime='+1h') ... datetime.time(10, 34, 8, 723668) datetime.time(5, 50, 20, 760744) datetime.time(15, 38, 34, 131273) datetime.time(19, 6, 10, 380548) datetime.time(6, 57, 40, 755508)
- time_series(start_date: date | datetime | timedelta | str | int = '-30d', end_date: date | datetime | timedelta | str | int = 'now', precision: float | None = None, distrib: Callable[[datetime], float] | None = None, tzinfo: tzinfo | None = None) Iterator[Tuple[datetime, Any]] ¶
Returns a generator yielding tuples of
(<datetime>, <value>)
.The data points will start at
start_date
, and be at every time interval specified byprecision
.- Parameters:
start_date – A
DateParseType
. Defaults to"-30d"
end_date – A
DateParseType
. Defaults to"now"
precision – A float representing the time interval between data points.
Defaults to 1/30th of the time :param distrib: A callable that accepts a datetime object and returns a value. Defaults to a uniform distribution :param tzinfo: timezone, instance of datetime.tzinfo subclass
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_series() ... <generator object Provider.time_series at 0x78915c7c1fc0> <generator object Provider.time_series at 0x78915c7c1fc0> <generator object Provider.time_series at 0x78915c7c1fc0> <generator object Provider.time_series at 0x78915c7c1fc0> <generator object Provider.time_series at 0x78915c7c1fc0>
- timezone() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.timezone() ... 'Indian/Maldives' 'America/Barbados' 'Europe/Stockholm' 'Africa/Windhoek' 'Asia/Qatar'
- unix_time(end_datetime: date | datetime | timedelta | str | int | None = None, start_datetime: date | datetime | timedelta | str | int | None = None) float ¶
Get a timestamp between January 1, 1970 and now, unless passed explicit
start_datetime
or end_datetime values.On Windows, the decimal part is always 0.
- Parameters:
end_datetime – A
DateParseType
. Defaults to the UNIX epochstart_datetime – A
DateParseType
. Defaults to the current date and time
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.unix_time() ... 1471686208.8050027 1320987892.1248937 732986000.0735818 451248638.2802469 891066420.1665108
faker.providers.internet
¶
- class faker.providers.internet.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- ascii_company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_company_email() ... 'ateixeira@da.br' 'tviana@fogaca.net' 'alexiacarvalho@pinto.com' 'gael-henrique15@novais.com' 'luara59@novaes.org'
- ascii_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_email() ... 'qaparecida@bol.com.br' 'tviana@uol.com.br' 'mirellacarvalho@yahoo.com.br' 'pintotheodoro@das.com' 'gnovais@yahoo.com.br'
- ascii_free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_free_email() ... 'ateixeira@gmail.com' 'nina76@yahoo.com.br' 'lfogaca@hotmail.com' 'alexiacarvalho@gmail.com' 'sophia92@yahoo.com.br'
- ascii_safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_safe_email() ... 'ateixeira@example.org' 'nina76@example.com' 'lfogaca@example.org' 'alexiacarvalho@example.org' 'sophia92@example.com'
- company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_email() ... 'ateixeira@da.br' 'tviana@fogaca.net' 'alexiacarvalho@pinto.com' 'gael-henrique15@novais.com' 'luara59@novaes.org'
- dga(year: int | None = None, month: int | None = None, day: int | None = None, tld: str | None = None, length: int | None = None) str ¶
Generates a domain name by given date https://en.wikipedia.org/wiki/Domain_generation_algorithm
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.dga() ... 'hxqvaffcmfsccynscisxeajjagjahtnfcmfsccynscisxeajjagjahtnfcmfscc.org' 'meydkrgdcvulautulqvjofrrnbjkfmvrewtpfttqcjafdhxckmyfamohcpnldug.org' 'iiulfpgbvqcdaehnqkbxmaqgkykorlxnwy.net' 'cpyhexmtvewxpwiiaxtgdfajuhbsyaaykvgkgreki.com' 'uqniukqjckmjabijnuqho.com'
- domain_name(levels: int = 1) str ¶
Produce an Internet domain name with the specified number of subdomain levels.
>>> domain_name() nichols-phillips.com >>> domain_name(2) williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_name() ... 'teixeira.br' 'da.br' 'viana.org' 'fogaca.net' 'da.org'
- domain_word() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_word() ... 'teixeira' 'aparecida' 'moraes' 'guerra' 'mendes'
- email(safe: bool = True, domain: str | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.email() ... 'ateixeira@example.org' 'nina76@example.com' 'lfogaca@example.org' 'alexiacarvalho@example.org' 'sophia92@example.com'
- free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email() ... 'ateixeira@gmail.com' 'nina76@yahoo.com.br' 'lfogaca@hotmail.com' 'alexiacarvalho@gmail.com' 'sophia92@yahoo.com.br'
- free_email_domain() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email_domain() ... 'uol.com.br' 'uol.com.br' 'gmail.com' 'yahoo.com.br' 'bol.com.br'
- hostname(levels: int = 1) str ¶
Produce a hostname with specified number of subdomain levels.
>>> hostname() db-01.nichols-phillips.com >>> hostname(0) laptop-56 >>> hostname(2) web-12.williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.hostname() ... 'web-66.da.br' 'laptop-47.pacheco.net' 'lt-24.sa.org' 'lt-92.brito.com' 'web-57.fogaca.br'
- http_method() str ¶
Returns random HTTP method https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_method() ... 'OPTIONS' 'OPTIONS' 'GET' 'DELETE' 'PATCH'
- http_status_code(include_unassigned: bool = True) int ¶
Returns random HTTP status code https://www.rfc-editor.org/rfc/rfc9110#name-status-codes :param include_unassigned: Whether to include status codes which have
not yet been assigned or are unused
- Returns:
a random three digit status code
- Return type:
- Example:
404
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_status_code() ... 532 297 488 555 315
- iana_id() str ¶
Returns IANA Registrar ID https://www.iana.org/assignments/registrar-ids/registrar-ids.xhtml
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iana_id() ... '6463344' '7056021' '679216' '4343903' '8577767'
- image_url(width: int | None = None, height: int | None = None, placeholder_url: str | None = None) str ¶
Returns URL to placeholder image Example: http://placehold.it/640x480
- Parameters:
width – Optional image width
height – Optional image height
placeholder_url – Optional template string of image URLs from custom placeholder service. String must contain
{width}
and{height}
placeholders, eg:https:/example.com/{width}/{height}
.
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.image_url() ... 'https://picsum.photos/788/861' 'https://dummyimage.com/530x995' 'https://dummyimage.com/621x976' 'https://dummyimage.com/447x285' 'https://placekitten.com/286/194'
- ipv4(network: bool = False, address_class: str | None = None, private: str | None = None) str ¶
Returns a random IPv4 address or network with a valid CIDR.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
private – Public or private
- Returns:
IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4() ... '171.174.170.81' '95.25.112.121' '51.105.121.194' '195.110.164.126' '141.250.247.54'
- ipv4_network_class() str ¶
Returns a IPv4 network class ‘a’, ‘b’ or ‘c’.
- Returns:
IPv4 network class
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_network_class() ... 'b' 'b' 'a' 'b' 'c'
- ipv4_private(network: bool = False, address_class: str | None = None) str ¶
Returns a private IPv4.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Private IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_private() ... '172.29.117.82' '10.248.203.131' '172.25.180.188' '172.22.253.123' '192.168.71.140'
- ipv4_public(network: bool = False, address_class: str | None = None) str ¶
Returns a public IPv4 excluding private blocks.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Public IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_public() ... '166.186.169.69' '111.198.92.30' '168.155.75.206' '141.250.247.54' '212.120.204.37'
- ipv6(network: bool = False) str ¶
Produce a random IPv6 address or network with a valid CIDR
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv6() ... 'e3e7:682:c209:4cac:629f:6fbf:d82c:7cd' 'f728:b4fa:4248:5e3a:a5d:2f35:6baa:9455' 'eb11:67b3:67a9:c378:7c65:c1e6:82e2:e662' 'f7c1:bd87:4da5:e709:d471:3d61:c8a7:639' 'e443:df78:9558:867f:5ba9:1fb0:7a02:4204'
- mac_address(multicast: bool = False) str ¶
Returns a random MAC address.
- Parameters:
multicast – Multicast address
- Returns:
MAC Address
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.mac_address() ... '66:c5:d7:14:84:f8' '48:9b:f4:b7:6f:47' '18:47:30:80:4b:9e' '6e:25:a9:f1:33:b5' '0e:a1:68:f4:e2:85'
- nic_handle(suffix: str = 'FAKE') str ¶
Returns NIC Handle ID https://www.apnic.net/manage-ip/using-whois/guide/person/
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handle() ... 'ZYT1598-FAKE' 'SIW493-FAKE' 'UE59352-FAKE' 'WBUN892-FAKE' 'CHQD98-FAKE'
- nic_handles(count: int = 1, suffix: str = '????') List[str] ¶
Returns NIC Handle ID list
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handles() ... ['ZYT1598-EWLN'] ['WGNZ53-QITZ'] ['UERV52-EJGW'] ['CHQ498-DZJA'] ['UU1864-TEMK']
- port_number(is_system: bool = False, is_user: bool = False, is_dynamic: bool = False) int ¶
Returns a network port number https://tools.ietf.org/html/rfc6335
- Parameters:
is_system – System or well-known ports
is_user – User or registered ports
is_dynamic – Dynamic / private / ephemeral ports
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.port_number() ... 50494 55125 5306 33936 63691
- ripe_id() str ¶
Returns RIPE Organization ID https://www.ripe.net/manage-ips-and-asns/db/support/organisation-object-in-the-ripe-database
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ripe_id() ... 'ORG-ZYT1598-RIPE' 'ORG-SIW493-RIPE' 'ORG-UE59352-RIPE' 'ORG-WBUN892-RIPE' 'ORG-CHQD98-RIPE'
- safe_domain_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_domain_name() ... 'example.com' 'example.com' 'example.org' 'example.com' 'example.net'
- safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_email() ... 'ateixeira@example.org' 'nina76@example.com' 'lfogaca@example.org' 'alexiacarvalho@example.org' 'sophia92@example.com'
- slug(value: str | None = None) str ¶
Django algorithm
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.slug() ... 'three-image-son' 'kitchen-amount' 'much-mention' 'why-step-themselves' 'me-help-past-wait'
- tld() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.tld() ... 'br' 'br' 'com' 'org' 'br'
- uri(schemes: List[str] | None = None, deep: int | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https uris. Passing an empty list will result in schemeless uri generation like “://domain.com/index.html”.
deep – an integer specifying how many path components the URI should have..
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri() ... 'https://viana.org/categorylogin.jsp' 'https://nascimento.com/list/wp-content/mainsearch.html' 'https://www.lopes.br/app/list/searchlogin.html' 'http://borges.br/list/searchprivacy.asp' 'http://nunes.com/wp-content/searchauthor.html'
- uri_extension() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_extension() ... '.php' '.php' '.html' '.htm' '.asp'
- uri_page() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_page() ... 'author' 'category' 'privacy' 'category' 'index'
- uri_path(deep: int | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_path() ... 'posts/tag' 'explore/tag' 'explore/category' 'blog' 'category'
- url(schemes: List[str] | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https urls. Passing an empty list will result in schemeless url generation like “://domain.com”.
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.url() ... 'https://da.br/' 'https://fogaca.net/' 'http://sa.org/' 'http://siqueira.br/' 'https://www.lopes.br/'
faker.providers.job
¶
- class faker.providers.job.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- job() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.job() ... 'Jogador de golfe' 'Lutador de luta livre' 'Armador' 'Engenheiro de produto ou produção' 'Paparazzo'
faker.providers.person
¶
- class faker.providers.person.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- first_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name() ... 'Helena' 'Laura' 'Bruno' 'Valentim' 'Nina'
- first_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_female() ... 'Maria Isis' 'Mariah' 'Ana Cecília' 'Joana' 'Sophia'
- first_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_male() ... 'Matheus' 'Otto' 'Asafe' 'José Pedro' 'Thomas'
- first_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_nonbinary() ... 'Helena' 'Laura' 'Bruno' 'Valentim' 'Nina'
- language_name() str ¶
Generate a random i18n language name (e.g. English).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.language_name() ... 'Luba-Katanga' 'Malay' 'Aymara' 'Interlingue' 'Quechua'
- last_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name() ... 'Gomes' 'Teixeira' 'Leão' 'Aparecida' 'da Luz'
- last_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_female() ... 'Gomes' 'Teixeira' 'Leão' 'Aparecida' 'da Luz'
- last_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_male() ... 'Gomes' 'Teixeira' 'Leão' 'Aparecida' 'da Luz'
- last_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_nonbinary() ... 'Gomes' 'Teixeira' 'Leão' 'Aparecida' 'da Luz'
- name() str ¶
- Example:
‘John Doe’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name() ... 'Mariah Aparecida' 'Thomas Mendonça' 'Liz Mendes' 'Sr. Thiago Carvalho' 'Davi Miguel Sá'
- name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_female() ... 'Mariah Aparecida' 'Sophia Mendonça' 'Liz Mendes' 'Helena Montenegro' 'Larissa Carvalho'
- name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_male() ... 'Otto Aparecida' 'Thomas Mendonça' 'Kevin Mendes' 'Henrique Montenegro' 'João Miguel Carvalho'
- name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_nonbinary() ... 'Mariah Aparecida' 'Thomas Mendonça' 'Liz Mendes' 'Sr. Thiago Carvalho' 'Davi Miguel Sá'
- prefix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix() ... 'Sra.' 'Dr.' 'Sra.' 'Sra.' 'Dra.'
- prefix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_female() ... 'Sra.' 'Sra.' 'Srta.' 'Sra.' 'Dra.'
- prefix_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_male() ... 'Dr.' 'Dr.' 'Sr.' 'Dr.' 'Dr.'
- prefix_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_nonbinary() ... 'Sra.' 'Dr.' 'Sra.' 'Sra.' 'Dra.'
- suffix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix() ... '' '' '' '' ''
- suffix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_female() ... '' '' '' '' ''
faker.providers.phone_number
¶
- class faker.providers.phone_number.pt_BR.Provider(generator: Any)¶
Bases:
Provider
- cellphone_number() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cellphone_number() ... '+55 60 9 4876-4759' '+55 (82) 94219 4892' '+55 (11) 9 5781 5659' '+55 (87) 97840 8016' '+55 97 95351 3933'
- country_calling_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country_calling_code() ... '+687' '+595' '+880' '+964' '+41'
- msisdn() str ¶
https://en.wikipedia.org/wiki/MSISDN
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.msisdn() ... '5571960487647' '5561993824219' '5551989241157' '5584915659387' '5581984080160'
faker.providers.ssn
¶
- class faker.providers.ssn.pt_BR.Provider(generator: Any)¶
Bases:
Provider
Provider for Brazilian SSN also known in Brazil as CPF. There are two methods Provider.ssn and Provider.cpf The snn returns a valid number with numbers only The cpf return a valid number formatted with brazilian mask. eg nnn.nnn.nnn-nn
- cpf() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cpf() ... '690.243.518-98' '532.710.684-53' '418.652.390-89' '569.471.382-64' '089.753.621-59'
- rg() str ¶
Brazilian RG, return plain numbers. Check: https://www.ngmatematica.com/2014/02/como-determinar-o-digito-verificador-do.html
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.rg() ... '68024315X' '75416830X' '147568304' '153402866' '378420562'