summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
committercyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
commit12cf076118570eebbff08c6b3090e0d4798447a1 (patch)
tree3ba25e17e3c3a5e82316558ba3864b955919ff72 /venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES
parentc45662ff3923b34614ddcc8feb9195541166dcc5 (diff)
no venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES')
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__init__.py126
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__pycache__/__init__.cpython-311.pycbin3736 -> 0 bytes
2 files changed, 0 insertions, 126 deletions
diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__init__.py b/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__init__.py
deleted file mode 100644
index d78c976..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__init__.py
+++ /dev/null
@@ -1,126 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-
-from typing import Optional
-
-from .. import Provider as AutomotiveProvider
-
-
-class Provider(AutomotiveProvider):
- """Implement automotive provider for ``es_ES`` locale.
-
- Sources:
-
- - https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_Spain
-
- .. |license_plate_unified| replace::
- :meth:`license_plate_unified() <faker.providers.automotive.es_ES.Provider.license_plate_unified>`
-
- .. |license_plate_by_province| replace::
- :meth:`license_plate_by_province() <faker.providers.automotive.es_ES.Provider.license_plate_by_province>`
- """
-
- license_formats = (
- # New format
- "#### ???",
- )
-
- # New format suffix letters (excluding vocals and Q from ascii uppercase)
- license_plate_new_format_suffix_letters = "BCDFGHJKLMNPRSTVWXYZ"
-
- # Old format suffix letters (excluding Q and R from ascii uppercase)
- license_plate_old_format_suffix_letters = "ABCDEFGHIJKLMNOPSTUVWXYZ"
-
- # Province prefixes (for old format)
- province_prefix = (
- "A", # Alicante
- "AB", # Albacete
- "AL", # Almería
- "AV", # Ávila
- "B", # Barcelona
- "BA", # Badajoz
- "BI", # Bilbao
- "BU", # Burgos
- "C", # La Coruña
- "CA", # Cádiz
- "CC", # Cáceres
- "CS", # Castellón de la Plana
- "CE", # Ceuta
- "CO", # Córdoba
- "CR", # Ciudad Real
- "CU", # Cuenca
- "GC", # Las Palmas (Gran Canaria)
- "GE", # Girona (until 1992)
- "GI", # Girona (since 1992)
- "GR", # Granada
- "GU", # Guadalajara
- "H", # Huelva
- "HU", # Huesca
- "PM", # Palma de Mallorca (until 1997)
- "IB", # Islas Baleares (since 1997)
- "J", # Jaén
- "L", # Lleida
- "LE", # León
- "LO", # Logroño
- "LU", # Lugo
- "M", # Madrid
- "MA", # Málaga
- "ML", # Melilla
- "MU", # Murcia
- "O", # Oviedo
- "OR", # Ourense (until 1998)
- "OU", # Ourense (since 1998)
- "P", # Palencia
- "NA", # Navarra
- "PO", # Pontevedra
- "S", # Santander
- "SA", # Salamanca
- "SE", # Sevilla
- "SG", # Segovia
- "SO", # Soria
- "SS", # Donostia/San Sebastián
- "T", # Tarragona
- "TE", # Teruel
- "TF", # Santa Cruz de Tenerife
- "TO", # Toledo
- "V", # Valencia
- "VA", # Valladolid
- "VI", # Vitoria
- "Z", # Zaragoza
- "ZA", # Zamora
- )
-
- def license_plate_unified(self) -> str:
- """Generate a unified license plate."""
- temp = re.sub(
- r"\?",
- lambda x: self.random_element(self.license_plate_new_format_suffix_letters),
- self.license_formats[0],
- )
- return self.numerify(temp)
-
- def license_plate_by_province(self, province_prefix: Optional[str] = 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. If ``None``, then a valid prefix
- will be selected at random.
- """
- province_prefix = province_prefix if province_prefix is not None else self.random_element(self.province_prefix)
- temp = re.sub(
- r"\?",
- lambda x: self.random_element(self.license_plate_old_format_suffix_letters),
- "#### ??",
- )
- return province_prefix + " " + self.numerify(temp)
-
- def license_plate(self) -> str:
- """Generate a license plate.
-
- This method randomly chooses (50/50) between |license_plate_unified|
- or |license_plate_by_province| to generate the result.
- """
- if self.generator.random.randint(0, 1):
- return self.license_plate_unified()
- return self.license_plate_by_province()
diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index dd942bc..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/automotive/es_ES/__pycache__/__init__.cpython-311.pyc
+++ /dev/null
Binary files differ