summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK
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/sk_SK
parentc45662ff3923b34614ddcc8feb9195541166dcc5 (diff)
no venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK')
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__init__.py100
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__pycache__/__init__.cpython-311.pycbin1649 -> 0 bytes
2 files changed, 0 insertions, 100 deletions
diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__init__.py b/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__init__.py
deleted file mode 100644
index b92bb17..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__init__.py
+++ /dev/null
@@ -1,100 +0,0 @@
-import string
-
-from .. import Provider as AutomotiveProvider
-
-
-class Provider(AutomotiveProvider):
- """Implement automotive provider for ``sk_SK`` locale.
-
- Sources:
-
- - https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_Slovakia
- """
-
- license_plate_prefix = [
- "BA",
- "BL",
- "BT", # Bratislava
- "BB", # Banska Bystrica
- "BJ", # Bardejov
- "BN", # Banovce nad Bebravou
- "BR", # Brezno
- "BS", # Banska Stiavnica
- "BY", # Bytca
- "CA", # Cadca
- "DK", # Dolny Kubin
- "DS", # Dunajska Streda
- "DT", # Detva
- "GA", # Galanta
- "GL", # Gelnica
- "HC", # Hlohovec
- "HE", # Humenne
- "IL", # Ilava
- "KA", # Krupina
- "KE", # Kosice
- "KK", # Kezmarok
- "KM", # Kysucke Nove Mesto
- "KN", # Komarno
- "KS", # Kosice-okolie
- "LC", # Lucenec
- "LE", # Levoca
- "LM", # Liptovsky Mikulas
- "LV", # Levice
- "MA", # Malacky
- "MI", # Michalovce
- "ML", # Medzilaborce
- "MT", # Martin
- "MY", # Myjava
- "NR", # Nitra
- "NM", # Nove Mesto nad Vahom
- "NO", # Namestovo
- "NZ", # Nove Zamky
- "PB", # Povazska Bystrica
- "PD", # Prievidza
- "PE", # Partizanske
- "PK", # Pezinok
- "PN", # Piestany
- "PO", # Presov
- "PP", # Poprad
- "PT", # Poltar
- "PU", # Puchov
- "RA", # Revuca
- "RK", # Ruzomberok
- "RS", # Rimavska Sobota
- "RV", # Roznava
- "SA", # Sala
- "SB", # Sabinov
- "SC", # Senec
- "SE", # Senica
- "SI", # Skalica
- "SK", # Svidnik
- "SL", # Stara Lubovna
- "SN", # Spisska Nova Ves
- "SO", # Sobrance
- "SP", # Stropkov
- "SV", # Snina
- "TT", # Trnava
- "TN", # Trencin
- "TO", # Topolcany
- "TR", # Turcianske Teplice
- "TS", # Tvrdosin
- "TV", # Trebisov
- "VK", # Velky Krtis
- "VT", # Vranov nad Toplou
- "ZA", # Zilina
- "ZC", # Zarnovica
- "ZH", # Ziar nad Hronom
- "ZM", # Zlate Moravce
- "ZV", # Zvolen
- ]
-
- license_plate_suffix = ("###??",)
-
- def license_plate(self) -> str:
- """Generate a license plate."""
- prefix: str = self.random_element(self.license_plate_prefix)
- suffix = self.bothify(
- self.random_element(self.license_plate_suffix),
- letters=string.ascii_uppercase,
- )
- return prefix + suffix
diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index e497315..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/automotive/sk_SK/__pycache__/__init__.cpython-311.pyc
+++ /dev/null
Binary files differ