Locale es_ES¶
faker.providers.address
¶
- class faker.providers.address.es_ES.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() ... 'Callejón Ariadna Torre 84 Piso 9 \nMálaga, 10127' 'Callejón Virginia Collado 21\nLugo, 37687' 'Alameda de Emiliana Fuente 977 Piso 0 \nÁvila, 48166' 'Alameda de Jose Francisco Morell 4\nCiudad, 10338' 'Alameda Sara Verdejo 51\nTeruel, 09179'
- administrative_unit() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.administrative_unit() ... 'Jaén' 'Valladolid' 'La Rioja' 'Alicante' 'Córdoba'
- autonomous_community() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.autonomous_community() ... 'Comunidad de Madrid' 'Región de Murcia' 'Aragón' 'Cataluña' 'La Rioja'
- 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() ... 'Valladolid' 'Alicante' 'Málaga' 'La Coruña' 'Lugo'
- city_suffix() str ¶
- Example:
‘town’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_suffix() ... 'Ville' 'Ville' 'Ville' 'Ville' 'Ville'
- country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country() ... 'Líbano' 'Maldivas' 'Australia' 'Georgia' 'Palau'
- 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() ... 'Spain' 'Spain' 'Spain' 'Spain' 'Spain'
- current_country_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country_code() ... 'ES' 'ES' 'ES' 'ES' 'ES'
- postcode() str ¶
- Example:
86039-9874
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.postcode() ... '26247' '50673' '28562' '03653' '17968'
- region() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.region() ... 'Comunidad de Madrid' 'Región de Murcia' 'Aragón' 'Cataluña' 'La Rioja'
- secondary_address() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.secondary_address() ... 'Piso 6' 'Apt. 48' 'Piso 6' 'Piso 7' 'Piso 9'
- state() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state() ... 'Jaén' 'Valladolid' 'La Rioja' 'Alicante' 'Córdoba'
- state_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state_name() ... 'Jaén' 'Valladolid' 'La Rioja' 'Alicante' 'Córdoba'
- street_address() str ¶
- Example:
‘791 Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_address() ... 'Calle de Juan Antonio Vidal 56 Piso 5 ' 'Cañada Enrique Bustamante 348' 'Avenida Trini Murillo 28 Piso 6 ' 'Paseo Albina Salas 940 Apt. 16 ' 'Alameda de Jose Francisco Morell 4'
- street_name() str ¶
- Example:
‘Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_name() ... 'Ronda de Apolinar Jove' 'C. de Zaida Mateos' 'Acceso de Dalila Gil' 'Cañada Enrique Bustamante' 'Paseo de Julieta Collado'
faker.providers.automotive
¶
- class faker.providers.automotive.es_ES.Provider(generator: Any)¶
Bases:
Provider
Implement automotive provider for
es_ES
locale.Sources:
- license_plate() str ¶
Generate a license plate.
This method randomly chooses (50/50) between
license_plate_unified()
orlicense_plate_by_province()
to generate the result.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.license_plate() ... '8764 SCL' '8242 PYJ' 'PO 9241 IT' 'ZA 7815 XK' '8778 NZJ'
- license_plate_by_province(province_prefix: str | None = None) str ¶
Generate a provincial license plate.
If a value for
province_prefix
is provided, the value will be used as the prefix regardless of validity. IfNone
, then a valid prefix will be selected at random.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.license_plate_by_province() ... 'ZA 0487 MN' 'J 5938 JP' 'C 1948 JE' 'SS 4115 VE' 'M 5659 TD'
faker.providers.bank
¶
- class faker.providers.bank.es_ES.Provider(generator: Any)¶
Bases:
Provider
Implement bank provider for
es_ES
locale.- aba() str ¶
Generate an ABA routing transit number.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.aba() ... '076048766' '057593829' '052194896' '034115783' '025659384'
- bank_country() str ¶
Generate the bank provider’s ISO 3166-1 alpha-2 country code.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bank_country() ... 'ES' 'ES' 'ES' 'ES' 'ES'
- bban() str ¶
Generate a Basic Bank Account Number (BBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bban() ... '66048764759382421948' '92411578156593877840' '80160975351393328711' '58714841858398947196' '59342320947112201868'
- iban() str ¶
Generate an International Bank Account Number (IBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iban() ... 'ES1266048764759382421948' 'ES0392411578156593877840' 'ES9680160975351393328711' 'ES2658714841858398947196' 'ES6659342320947112201868'
- swift(length: int | None = None, primary: bool = False, use_dataset: bool = False) str ¶
Generate a SWIFT code.
SWIFT codes, reading from left to right, are composed of a 4 alphabet character bank code, a 2 alphabet character country code, a 2 alphanumeric location code, and an optional 3 alphanumeric branch code. This means SWIFT codes can only have 8 or 11 characters, so the value of
length
can only beNone
or the integers8
or11
. If the value isNone
, then a value of8
or11
will randomly be assigned.Because all 8-digit SWIFT codes already refer to the primary branch or office, the
primary
argument only has an effect if the value oflength
is11
. Ifprimary
isTrue
andlength
is11
, the 11-digit SWIFT codes generated will always end in'XXX'
to denote that they belong to primary branches/offices.For extra authenticity, localized providers may opt to include SWIFT bank codes, location codes, and branch codes used in their respective locales. If
use_dataset
isTrue
, this method will generate SWIFT codes based on those locale-specific codes if included. If those codes were not included, then it will behave as ifuse_dataset
wereFalse
, and in that mode, all those codes will just be randomly generated as per the specification.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift() ... 'YNBIES65ZT4' 'SGQEESSIGQ8' 'JDXCESV4' 'LNKTESN9' 'OQIBES9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8) ... 'MYNBESQ6' 'PMZJES4W' 'SGQEESSI' 'YDTZESQ8' 'WZTEESTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8, use_dataset=True) ... 'MYNBESQ6' 'PMZJES4W' 'SGQEESSI' 'YDTZESQ8' 'WZTEESTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11) ... 'MYNBESQ65ZT' 'PLSGES6ISIG' 'TZIRESJTGEV' 'PRDLES1UN94' 'OQIBES9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True) ... 'MYNBESQ6XXX' 'PMZJES4WXXX' 'SGQEESSIXXX' 'YDTZESQ8XXX' 'WZTEESTGXXX'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, use_dataset=True) ... 'MYNBESQ65ZT' 'PLSGES6ISIG' 'TZIRESJTGEV' 'PRDLES1UN94' 'OQIBES9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True, use_dataset=True) ... 'MYNBESQ6XXX' 'PMZJES4WXXX' 'SGQEESSIXXX' 'YDTZESQ8XXX' 'WZTEESTGXXX'
- swift11(primary: bool = False, use_dataset: bool = False) str ¶
Generate an 11-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to11
. Ifprimary
is set toTrue
, the SWIFT code will always end with'XXX'
. All 11-digit SWIFT codes use this convention to refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11() ... 'MYNBESQ65ZT' 'PLSGES6ISIG' 'TZIRESJTGEV' 'PRDLES1UN94' 'OQIBES9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11(use_dataset=True) ... 'MYNBESQ65ZT' 'PLSGES6ISIG' 'TZIRESJTGEV' 'PRDLES1UN94' 'OQIBES9AFZA'
- swift8(use_dataset: bool = False) str ¶
Generate an 8-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to8
and with theprimary
argument omitted. All 8-digit SWIFT codes already refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8() ... 'MYNBESQ6' 'PMZJES4W' 'SGQEESSI' 'YDTZESQ8' 'WZTEESTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8(use_dataset=True) ... 'MYNBESQ6' 'PMZJES4W' 'SGQEESSI' 'YDTZESQ8' 'WZTEESTG'
faker.providers.barcode
¶
- class faker.providers.barcode.es_ES.Provider(generator: Any)¶
Bases:
Provider
Implement barcode provider for
es_ES
locale.Sources:
- ean(length: int = 13, prefixes: Tuple[int | str | Tuple[int | str, ...], ...] = ()) str ¶
Generate an EAN barcode of the specified
length
.The value of
length
can only be8
or13
(default) which will create an EAN-8 or an EAN-13 barcode respectively.If a value for
prefixes
is specified, the result will begin with one of the sequences inprefixes
.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean(length=13) ... '6604876475937' '8242194892418' '1578156593879' '7840801609759' '3513933287112'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean(length=8) ... '66048763' '47593824' '42194897' '24115780' '15659385'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean(prefixes=('00', )) ... '0004876475931' '0019489241156' '0056593877840' '0016097535134' '0087115871480'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean(prefixes=('45', '49')) ... '4504876475932' '4919489241155' '4556593877841' '4516097535135' '4987115871489'
- ean13(prefixes: Tuple[int | str | Tuple[int | str, ...], ...] = ()) str ¶
Generate an EAN-13 barcode.
This method uses
ean()
under the hood with thelength
argument explicitly set to13
.If a value for
prefixes
is specified, the result will begin with one of the sequences inprefixes
.Note
Codes starting with a leading zero are treated specially in some barcode readers. For more information on compatibility with UPC-A codes, see
EnUsBarcodeProvider.ean13()
.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean13() ... '6604876475937' '8242194892418' '1578156593879' '7840801609759' '3513933287112'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean13(prefixes=('00', )) ... '0004876475931' '0019489241156' '0056593877840' '0016097535134' '0087115871480'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean13(prefixes=('45', '49')) ... '4504876475932' '4919489241155' '4556593877841' '4516097535135' '4987115871489'
- ean8(prefixes: Tuple[int | str | Tuple[int | str, ...], ...] = ()) str ¶
Generate an EAN-8 barcode.
This method uses
ean()
under the hood with thelength
argument explicitly set to8
.If a value for
prefixes
is specified, the result will begin with one of the sequences inprefixes
.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean8() ... '66048763' '47593824' '42194897' '24115780' '15659385'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean8(prefixes=('00', )) ... '00048767' '00938242' '00489249' '00781565' '00877848'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ean8(prefixes=('45', '49')) ... '49048766' '45938245' '45489242' '49781564' '45877841'
- localized_ean(length: int = 13) str ¶
Generate a localized EAN barcode of the specified
length
.The value of
length
can only be8
or13
(default) which will create an EAN-8 or an EAN-13 barcode respectively.This method uses the standard barcode provider’s
ean()
under the hood with theprefixes
argument explicitly set tolocal_prefixes
of a localized barcode provider implementation.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.localized_ean() ... '8404876475931' '8419489241156' '8456593877840' '8416097535134' '8487115871480'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.localized_ean(length=13) ... '8404876475931' '8419489241156' '8456593877840' '8416097535134' '8487115871480'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.localized_ean(length=8) ... '84048769' '84938244' '84489241' '84781567' '84877840'
- localized_ean13() str ¶
Generate a localized EAN-13 barcode.
This method uses
localized_ean()
under the hood with thelength
argument explicitly set to13
.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.localized_ean13() ... '8404876475931' '8419489241156' '8456593877840' '8416097535134' '8487115871480'
- localized_ean8() str ¶
Generate a localized EAN-8 barcode.
This method uses
localized_ean()
under the hood with thelength
argument explicitly set to8
.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.localized_ean8() ... '84048769' '84938244' '84489241' '84781567' '84877840'
faker.providers.color
¶
- class faker.providers.color.es_ES.Provider(generator: Any)¶
Bases:
Provider
- 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() ... 'Rojo' 'Rosa brumoso' 'Amarillo verde' 'Gris gainsboro (Estaño)' 'Verde prado'
- 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.es_ES.Provider(generator: Any)¶
Bases:
Provider
Provider for company names for es_ES locale
Company naming scheme and probabilities are inspired by and/or based on existing companies in Spain.
Sources: - https://en.wikipedia.org/wiki/List_of_legal_entity_types_by_country - https://ranking-empresas.eleconomista.es/ranking_empresas_nacional.html
- 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:
‘Robust full-range hub’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase() ... 'Networked well-modulated instruction set' 'Balanced empowering migration' 'Pre-emptive impactful toolset' 'Innovative mission-critical help-desk' 'Reduced didactic middleware'
- company() str ¶
- Example:
‘Acme Ltd’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company() ... 'Rivero y Arjona S.C.P' 'Sandalio Mateos Tapia S.Com.' 'Desarrollo Inteligentes S.A.' 'Infraestructuras ZQUQ S.L.' 'Suarez & Asociados S.Com.'
- company_prefix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_prefix() ... 'Hnos' 'Hnos' 'Familia' 'Hermanos' 'Hnos'
- company_suffix() str ¶
- Example:
‘Ltd’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_suffix() ... 'S.L.L.' 'S.L.' 'S.Com.' 'S.C.P' 'S.Coop.'
- company_type() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_type() ... 'Restauración' 'Soluciones' 'Banco' 'Infraestructuras' 'Transportes'
- random_company_acronym() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.random_company_acronym() ... 'NVN' 'ZVRY' 'EVA' 'HEP' 'ZQUQ'
faker.providers.currency
¶
- class faker.providers.currency.es_ES.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', 'Kwacha malauí') ('NZD', 'Dólar neozelandés') ('BAM', 'Marco bosnioherzegovino') ('IRR', 'Rial iraní') ('SPL', '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() ... 'Kwacha malauí' 'Dólar neozelandés' 'Marco bosnioherzegovino' 'Rial iraní' 'Luigino'
faker.providers.date_time
¶
- class faker.providers.date_time.es_ES.Provider(generator: Any)¶
Bases:
Provider
- am_pm() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.am_pm() ... 'PM' 'PM' 'AM' '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-07-18' '2011-10-12' '1993-03-08' '1984-04-09' '1998-03-08'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date(pattern='%m/%d/%Y') ... '07/18/2016' '10/12/2011' '03/08/1993' '04/09/1984' '03/08/1998'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date(end_datetime='+1w') ... '2016-07-24' '2011-10-18' '1993-03-11' '1984-04-11' '1998-03-11'
- 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, 6, 14) datetime.date(2017, 11, 9) datetime.date(2007, 9, 26) datetime.date(2002, 11, 20) datetime.date(2010, 6, 16)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between(start_date='-1w') ... datetime.date(2025, 2, 11) datetime.date(2025, 2, 11) datetime.date(2025, 2, 8) datetime.date(2025, 2, 7) datetime.date(2025, 2, 9)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between(start_date="-1y", end_date="+1w") ... datetime.date(2024, 12, 23) datetime.date(2024, 11, 21) datetime.date(2024, 7, 18) datetime.date(2024, 5, 19) datetime.date(2024, 8, 21)
- 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, 2, 13) datetime.date(2025, 2, 13) datetime.date(2025, 2, 13) datetime.date(2025, 2, 13) datetime.date(2025, 2, 13)
- 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, 7, 18) datetime.date(2011, 10, 12) datetime.date(1993, 3, 8) datetime.date(1984, 4, 9) datetime.date(1998, 3, 8)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_object(end_datetime='+1w') ... datetime.date(2016, 7, 24) datetime.date(2011, 10, 18) datetime.date(1993, 3, 11) datetime.date(1984, 4, 11) datetime.date(1998, 3, 11)
- 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, 1, 27) datetime.date(1997, 1, 15) datetime.date(1957, 11, 27) datetime.date(1939, 2, 26) datetime.date(1968, 6, 5)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_of_birth(minimum_age=30, maximum_age=50) ... datetime.date(1991, 11, 7) datetime.date(1990, 1, 13) datetime.date(1982, 12, 13) datetime.date(1979, 7, 22) datetime.date(1984, 11, 8)
- 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, 3, 18) datetime.date(2019, 1, 15) datetime.date(2010, 7, 25) datetime.date(2006, 7, 3) datetime.date(2012, 11, 3)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_century(before_today=False, after_today=True) ... datetime.date(2088, 5, 7) datetime.date(2081, 11, 16) datetime.date(2056, 8, 11) datetime.date(2044, 7, 4) datetime.date(2063, 5, 28)
- 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, 4, 28) datetime.date(2023, 11, 18) datetime.date(2022, 2, 25) datetime.date(2021, 4, 29) datetime.date(2022, 8, 14)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_decade(before_today=False, after_today=True) ... datetime.date(2029, 3, 29) datetime.date(2028, 10, 26) datetime.date(2027, 3, 4) datetime.date(2026, 5, 20) datetime.date(2027, 8, 13)
- 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, 2, 11) datetime.date(2025, 2, 10) datetime.date(2025, 2, 6) datetime.date(2025, 2, 4) datetime.date(2025, 2, 7)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_month(before_today=False, after_today=True) ... datetime.date(2025, 2, 26) datetime.date(2025, 2, 25) datetime.date(2025, 2, 19) datetime.date(2025, 2, 17) datetime.date(2025, 2, 21)
- 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, 2, 6) datetime.date(2025, 2, 2) datetime.date(2025, 1, 19) datetime.date(2025, 1, 12) datetime.date(2025, 1, 22)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_year(before_today=False, after_today=True) ... datetime.date(2025, 11, 11) datetime.date(2025, 10, 15) datetime.date(2025, 6, 28) datetime.date(2025, 5, 7) datetime.date(2025, 7, 27)
- 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, 7, 18, 14, 52, 52, 904672) datetime.datetime(2011, 10, 12, 18, 48, 33, 615461) datetime.datetime(1993, 3, 8, 7, 19, 41, 350252) datetime.datetime(1984, 4, 9, 17, 34, 55, 50637) datetime.datetime(1998, 3, 8, 10, 2, 15, 309262)
- 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, 3, 19, 17, 27, 48, 374527) datetime.datetime(1535, 3, 12, 18, 54, 47, 498833) datetime.datetime(852, 4, 15, 9, 42, 33, 394241) datetime.datetime(525, 1, 29, 19, 41, 36, 20493) datetime.datetime(1035, 11, 19, 18, 27, 56, 301464)
- 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, 6, 15, 3, 37, 25, 236214) datetime.datetime(2017, 11, 10, 17, 2, 11, 808743) datetime.datetime(2007, 9, 27, 22, 31, 52, 361449) datetime.datetime(2002, 11, 21, 15, 42, 28, 49189) datetime.datetime(2010, 6, 17, 18, 59, 24, 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, 2, 13, 20, 26, 42) datetime.datetime(2025, 2, 13, 20, 26, 42) datetime.datetime(2025, 2, 13, 20, 26, 42) datetime.datetime(2025, 2, 13, 20, 26, 42) datetime.datetime(2025, 2, 13, 20, 26, 42)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates(datetime_start='-30y', datetime_end='now') ... datetime.datetime(2020, 6, 15, 3, 37, 25, 236214) datetime.datetime(2017, 11, 10, 17, 2, 11, 808743) datetime.datetime(2007, 9, 27, 22, 31, 52, 361449) datetime.datetime(2002, 11, 21, 15, 42, 28, 49189) datetime.datetime(2010, 6, 17, 18, 59, 24, 171082)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates(datetime_start='now', datetime_end='+1y') ... datetime.datetime(2025, 12, 19, 6, 26, 39, 441207) datetime.datetime(2025, 11, 17, 16, 29, 28, 993625) datetime.datetime(2025, 7, 17, 11, 4, 28, 345382) datetime.datetime(2025, 5, 19, 10, 2, 49, 534973) datetime.datetime(2025, 8, 19, 14, 9, 23, 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, 3, 19, 6, 57, 21, 278052) datetime.datetime(2019, 1, 15, 21, 3, 21, 258802) datetime.datetime(2010, 7, 26, 2, 27, 38, 465720) datetime.datetime(2006, 7, 3, 18, 45, 43, 82893) datetime.datetime(2012, 11, 4, 9, 8, 47, 965365)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_century(before_now=False, after_now=True) ... datetime.datetime(2088, 5, 8, 1, 41, 2, 890634) datetime.datetime(2081, 11, 16, 6, 13, 7, 364087) datetime.datetime(2056, 8, 12, 3, 1, 55, 457027) datetime.datetime(2044, 7, 5, 0, 6, 22, 821629) datetime.datetime(2063, 5, 28, 18, 43, 8, 740834)
- 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, 4, 28, 18, 55, 0, 844315) datetime.datetime(2023, 11, 19, 0, 29, 23, 934224) datetime.datetime(2022, 2, 25, 19, 51, 4, 81170) datetime.datetime(2021, 4, 29, 9, 28, 38, 301989) datetime.datetime(2022, 8, 14, 12, 27, 45, 24126)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_decade(before_now=False, after_now=True) ... datetime.datetime(2029, 3, 29, 17, 40, 50, 396539) datetime.datetime(2028, 10, 26, 15, 20, 0, 358272) datetime.datetime(2027, 3, 5, 8, 56, 43, 803396) datetime.datetime(2026, 5, 21, 6, 43, 1, 292076) datetime.datetime(2027, 8, 14, 0, 27, 35, 514458)
- 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, 2, 11, 20, 27, 27, 712777) datetime.datetime(2025, 2, 10, 17, 47, 14, 84934) datetime.datetime(2025, 2, 6, 9, 43, 23, 524498) datetime.datetime(2025, 2, 4, 7, 51, 41, 677359) datetime.datetime(2025, 2, 7, 13, 42, 0, 473157)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_month(before_now=False, after_now=True) ... datetime.datetime(2025, 2, 26, 15, 26, 19, 630432) datetime.datetime(2025, 2, 25, 8, 0, 11, 206660) datetime.datetime(2025, 2, 20, 5, 20, 45, 243848) datetime.datetime(2025, 2, 17, 18, 34, 31, 724950) datetime.datetime(2025, 2, 21, 14, 19, 17, 332778)
- 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, 2, 7, 0, 42, 27, 199902) datetime.datetime(2025, 2, 3, 5, 42, 19, 157769) datetime.datetime(2025, 1, 19, 10, 37, 42, 446595) datetime.datetime(2025, 1, 12, 8, 29, 44, 301343) datetime.datetime(2025, 1, 23, 10, 5, 18, 686871)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_year(before_now=False, after_now=True) ... datetime.datetime(2025, 11, 12, 0, 52, 22, 309792) datetime.datetime(2025, 10, 15, 6, 25, 12, 893356) datetime.datetime(2025, 6, 28, 22, 1, 24, 926486) datetime.datetime(2025, 5, 8, 0, 3, 36, 335895) datetime.datetime(2025, 7, 28, 1, 7, 22, 926210)
- day_of_month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_month() ... '18' '12' '08' '09' '08'
- day_of_week()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_week() ... 'lunes' 'miércoles' 'lunes' 'lunes' 'domingo'
- 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, 3, 10) datetime.date(2025, 3, 7) datetime.date(2025, 2, 26) datetime.date(2025, 2, 21) datetime.date(2025, 2, 28)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_date(end_date='+1y') ... datetime.date(2025, 12, 18) datetime.date(2025, 11, 16) datetime.date(2025, 7, 17) datetime.date(2025, 5, 19) datetime.date(2025, 8, 19)
- 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, 3, 11, 4, 25, 43, 594731) datetime.datetime(2025, 3, 8, 14, 10, 20, 54467) datetime.datetime(2025, 2, 26, 11, 15, 24, 116942) datetime.datetime(2025, 2, 21, 14, 51, 54, 957843) datetime.datetime(2025, 3, 1, 4, 33, 46, 566513)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_datetime(end_date='+1y') ... datetime.datetime(2025, 12, 19, 6, 26, 39, 596785) datetime.datetime(2025, 11, 17, 16, 29, 29, 235670) datetime.datetime(2025, 7, 17, 11, 4, 28, 924810) datetime.datetime(2025, 5, 19, 10, 2, 50, 276056) datetime.datetime(2025, 8, 19, 14, 9, 23, 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-07-18T14:52:52.904672' '2011-10-12T18:48:33.615461' '1993-03-08T07:19:41.350252' '1984-04-09T17:34:55.050637' '1998-03-08T10:02:15.309262'
- month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month() ... '07' '10' '03' '04' '03'
- month_name()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month_name() ... 'julio' 'octubre' 'marzo' 'abril' 'marzo'
- 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, 2, 7) datetime.date(2025, 2, 4) datetime.date(2025, 1, 26) datetime.date(2025, 1, 21) datetime.date(2025, 1, 28)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_date(start_date='-1y') ... datetime.date(2024, 12, 17) datetime.date(2024, 11, 15) datetime.date(2024, 7, 15) datetime.date(2024, 5, 17) datetime.date(2024, 8, 17)
- 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, 2, 9, 4, 25, 42, 594731) datetime.datetime(2025, 2, 6, 14, 10, 19, 54467) datetime.datetime(2025, 1, 27, 11, 15, 23, 116942) datetime.datetime(2025, 1, 22, 14, 51, 53, 957843) datetime.datetime(2025, 1, 30, 4, 33, 45, 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() ... '14:52:52' '18:48:33' '07:19:41' '17:34:55' '10:02:15'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time(pattern='%I:%M %p') ... '02:52 PM' '06:48 PM' '07:19 AM' '05:34 PM' '10:02 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(14, 52, 52, 904672) datetime.time(18, 48, 33, 615461) datetime.time(7, 19, 41, 350252) datetime.time(17, 34, 55, 50637) datetime.time(10, 2, 15, 309262)
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_object(end_datetime='+1h') ... datetime.time(15, 43, 32, 823338) datetime.time(19, 34, 2, 251312) datetime.time(7, 44, 55, 407943) datetime.time(17, 50, 27, 150938) datetime.time(10, 32, 55, 898259)
- 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 0x7f8862ec5e00> <generator object Provider.time_series at 0x7f8862ec5e00> <generator object Provider.time_series at 0x7f8862ec5e00> <generator object Provider.time_series at 0x7f8862ec5e00> <generator object Provider.time_series at 0x7f8862ec5e00>
- 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() ... 1468853572.904672 1318445313.6154613 731575181.3502522 450380095.05063695 889351335.3092624
faker.providers.internet
¶
- class faker.providers.internet.es_ES.Provider(generator: Any)¶
Bases:
Provider
- ascii_company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_company_email() ... 'crivero@transportes.es' 'annachaparro@desarrollo.com' 'conrado15@charo.net' 'hsalas@comercial.es' 'uriartepastora@hervas.com'
- ascii_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_email() ... 'qarjona@hotmail.com' 'emateos@yahoo.com' 'lopechaves@infraestructuras.es' 'oterotono@yahoo.com' 'hsalas@comercial.es'
- ascii_free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_free_email() ... 'crivero@yahoo.com' 'yquiros@yahoo.com' 'lpalma@gmail.com' 'lopechaves@gmail.com' 'virginia89@gmail.com'
- ascii_safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_safe_email() ... 'crivero@example.com' 'yquiros@example.com' 'lpalma@example.org' 'lopechaves@example.org' 'virginia89@example.org'
- company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_email() ... 'crivero@transportes.es' 'annachaparro@desarrollo.com' 'conrado15@charo.net' 'hsalas@comercial.es' 'uriartepastora@hervas.com'
- 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() ... 'rivero.es' 'mateos.net' 'instalaciones.org' 'inversiones.es' 'charo.net'
- domain_word() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_word() ... 'rivero' 'sandalio' 'desarrollo' 'infraestructuras' 'suarez'
- email(safe: bool = True, domain: str | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.email() ... 'crivero@example.com' 'yquiros@example.com' 'lpalma@example.org' 'lopechaves@example.org' 'virginia89@example.org'
- free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email() ... 'crivero@yahoo.com' 'yquiros@yahoo.com' 'lpalma@gmail.com' 'lopechaves@gmail.com' 'virginia89@gmail.com'
- free_email_domain() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email_domain() ... 'yahoo.com' 'yahoo.com' 'gmail.com' 'yahoo.com' 'hotmail.com'
- 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.hermanos.org' 'laptop-59.desarrollo.com' 'lt-48.inversiones.es' 'laptop-81.rovira.net' 'lt-77.comercial.es'
- 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() ... 'crivero@example.com' 'yquiros@example.com' 'lpalma@example.org' 'lopechaves@example.org' 'virginia89@example.org'
- 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() ... 'es' 'es' 'com' 'org' 'es'
- 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://mateos.net/categorylogin.jsp' 'http://inversiones.es/mainfaq.htm' 'https://www.venceslas.com/tag/tagsmain.asp' 'http://logistica.net/posts/blog/appregister.php' 'http://www.inversiones.org/tag/app/searchlogin.jsp'
- 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://hermanos.org/' 'https://desarrollo.com/' 'https://www.construccion.com/' 'https://fuente.org/' 'http://www.servicios.net/'
faker.providers.isbn
¶
faker.providers.job
¶
- class faker.providers.job.es_ES.Provider(generator: Any)¶
Bases:
Provider
- job() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.job() ... 'Técnico en asistencia al usuario de tecnología de la información y las comunicaciones' 'Geólogo' 'Recolector de basura y material reciclable' 'Trabajador comunitario de la salud' 'Ingeniero de minas'
faker.providers.person
¶
- class faker.providers.person.es_ES.Provider(generator: Any)¶
Bases:
Provider
- first_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name() ... 'Rafaela' 'Rogelio' 'Marta' 'Tania' 'Sosimo'
- first_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_female() ... 'Sonia' 'Gabriela' 'Purificación' 'Vilma' 'Ignacia'
- first_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_male() ... 'Telmo' 'Guadalupe' 'Reynaldo' 'Victor' 'Humberto'
- first_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_nonbinary() ... 'Rafaela' 'Rogelio' 'Marta' 'Tania' 'Sosimo'
- language_name() str ¶
Generate a random i18n language name (e.g. English).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.language_name() ... 'Letón' 'Maltés' 'Aimara' 'Igbo' 'Romanche'
- last_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name() ... 'Plaza' 'Rivero' 'Arjona' 'Jove' 'Vidal'
- last_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_female() ... 'Plaza' 'Rivero' 'Arjona' 'Jove' 'Vidal'
- last_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_male() ... 'Plaza' 'Rivero' 'Arjona' 'Jove' 'Vidal'
- last_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_nonbinary() ... 'Plaza' 'Rivero' 'Arjona' 'Jove' 'Vidal'
- name() str ¶
- Example:
‘John Doe’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name() ... 'Purificación Rivero Arjona' 'José Mari Torre-Quirós' 'Jorge Gastón Gil Vargas' 'Epifanio Chaves Bustamante' 'Rosalía Dionisia Collado Menéndez'
- name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_female() ... 'Purificación Rivero' 'Dora Vidal Torre' 'Ágata Mateos' 'Felisa de Vargas' 'Elisabet Chaves Bustamante'
- name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_male() ... 'Reynaldo Rivero' 'Efraín Vidal Torre' 'Ángel Mateos' 'Gastón de Vargas' 'Epifanio Chaves Bustamante'
- name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_nonbinary() ... 'Purificación Rivero Arjona' 'José Mari Torre-Quirós' 'Jorge Gastón Gil Vargas' 'Epifanio Chaves Bustamante' 'Rosalía Dionisia Collado Menéndez'
- prefix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix() ... 'del' 'del' 'de' 'del' 'del'
- prefix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_female() ... 'del' 'del' 'de' 'del' 'del'
- prefix_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_male() ... 'del' 'del' 'de' 'del' 'del'
- prefix_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_nonbinary() ... 'del' 'del' 'de' 'del' 'del'
- 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.es_ES.Provider(generator: Any)¶
Bases:
Provider
According to official specs: https://avancedigital.mineco.gob.es/es-ES/Servicios/Numeracion/Documents/Guia_Numeracion.pdf
- 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() ... '6048764759382' '2194892411578' '5659387784080' '6097535139332' '1158714841858'
faker.providers.ssn
¶
- class faker.providers.ssn.es_ES.Provider(generator: Any)¶
Bases:
Provider
A Faker provider for the Spanish VAT IDs and DOIs
- cif() str ¶
https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal :return: a random Spanish CIF
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cif() ... 'F9206913G' 'N3986051E' 'A81941882' 'Q5960991G' 'R0328112H'
- doi() str ¶
https://es.wikipedia.org/wiki/Identificador_de_objeto_digital :return: a random Spanish CIF or NIE or NIF
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.doi() ... '09934560D' '94307044Y' '13539263Z' 'Q1872356I' 'U5171228I'
- nie() str ¶
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identidad_de_extranjero :return: a random Spanish NIE
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nie() ... 'Z0775130N' 'Y1379982L' 'Y0007870H' 'Z4958704R' 'X8601874N'
- nif() str ¶
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identificaci%C3%B3n_fiscal :return: NIF
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nif() ... '27270448S' '95696307T' '86525527X' '83969256M' '80797198S'
- nuss(company: bool = False) str ¶
- Parameters:
company – flag to indicate if we should generate a company NUSS
- Returns:
a random Spanish Social Security Number (Número de la Seguridad Social)
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nuss() ... '350905813001' '539777604469' '202772104161' '289242197827' '402797659083'
- ssn() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ssn() ... '604-87-6475' '824-21-9489' '411-57-8156' '938-77-8408' '160-97-5351'
- vat_id() str ¶
http://ec.europa.eu/taxation_customs/vies/faq.html#item_11 :return: a random Spanish VAT ID
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.vat_id() ... 'ES60487647w' 'ESZ3824219q' 'ESJ9241157g' 'ES65938778q' 'ESp80160975'