update bots

This commit is contained in:
2026-05-18 14:15:59 +07:00
parent b0ce866a2f
commit b9054d178e
5775 changed files with 832577 additions and 38 deletions

View File

@@ -0,0 +1,53 @@
from .. import Provider as AutomotiveProvider
class Provider(AutomotiveProvider):
"""Implement automotive provider for ``ar_JO`` locale.
Sources:
- https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_Jordan
"""
license_formats = (
"{{initials}}-####",
"{{initials}}-#####",
)
def initials(self) -> str:
"""Generate an initial number for license plates."""
return self.random_element(
[
"1", # Ministers
"2",
"3", # Parliament
"5", # General Government
"6", # Aqaba free zone
"7",
"8", # Diplomatic
"9", # Temporary
"10",
"23", # Passenger cars
"38",
"39", # Crew cabs
"41",
"42", # Light goods vehicles
"44", # Tractors
"46", # Motorcycles and scooters
"50", # Taxi
"56", # Small buses
"58", # Coaches
"60", # HGVs
"70", # Rental Cars
"71", # Trailer
"90", # Army
"95", # Ambulance
"96", # Gendarmerie
"99", # Police
]
)
def license_plate(self) -> str:
"""Generate a license plate."""
pattern: str = self.random_element(self.license_formats)
return self.numerify(self.generator.parse(pattern))