From 6d7ba58f880be618ade07f8ea080fe8c4bf8a896 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Wed, 3 Apr 2024 03:10:44 -0400 Subject: venv --- .../faker/providers/automotive/en_US/__init__.py | 168 +++++++++++++++++++++ .../en_US/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1473 bytes 2 files changed, 168 insertions(+) create mode 100644 venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__init__.py create mode 100644 venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__pycache__/__init__.cpython-311.pyc (limited to 'venv/lib/python3.11/site-packages/faker/providers/automotive/en_US') diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__init__.py b/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__init__.py new file mode 100644 index 0000000..5cd6a01 --- /dev/null +++ b/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__init__.py @@ -0,0 +1,168 @@ +from .. import Provider as AutomotiveProvider + + +class Provider(AutomotiveProvider): + """Implement automotive provider for ``en_US`` locale. + + Sources: + + - https://en.wikipedia.org/wiki/United_States_license_plate_designs_and_serial_formats + """ + + license_formats = ( + # Alabama + "#??####", + "##??###", + # Alaska + "### ???", + # American Samoa + "####", + # Arizona + "???####", + # Arkansas + "### ???", + "###???", + # California + "#???###", + # Colarado + "###-???", + "???-###", + # Conneticut + "###-???", + # Delaware + "######", + # DC + "??-####", + # Florda + "??? ?##", + "### ???", + "?## #??", + "### #??", + # Georgia + "???####", + # Guam + "?? ####", + # Hawaii + "??? ###", + "H?? ###", + "Z?? ###", + "K?? ###", + "L?? ###", + "M?? ###", + # Idaho + "? ######", + "#? #####", + "#? ?####", + "#? ??###", + "#? #?#???", + "#? ####?", + "##? ####", + # Illinois + "?? #####", + "??# ####", + # Indiana + "###?", + "###??", + "###???", + # Iowa + "??? ###", + # Kansas + "### ???", + # Kentucky + "### ???", + # Louisiana + "### ???", + # Maine + "#### ??", + # Maryland + "#??####", + # Massachusetts + "#??? ##", + "#?? ###", + "### ??#", + "##? ?##", + # Michigan + "### ???", + "#?? ?##", + # Minnesota + "###-???", + # Mississippi + "??? ###", + # Missouri + "??# ?#?", + # Montana + "#-#####?", + "##-####?", + # Nebraska + "??? ###", + "#-?####", + "##-?###", + "##-??##", + # Nevada + "##?•###", + # New Hampshire + "### ####", + # New Jersey + "?##-???", + # New Mexico + "###-???", + "???-###", + # New York + "???-####", + # North Carolina + "###-????", + # North Dakota + "### ???", + # Nothern Mariana Islands + "??? ###", + # Ohio + "??? ####", + # Oklahoma + "???-###", + # Oregon + "### ???", + # Pennsylvania + "???-####", + # Peurto Rico + "???-###", + # Rhode Island + "###-###", + # South Carolina + "### #??", + # South Dakota + "#?? ###", + "#?? ?##", + "##? ###", + "##? ?##", + "##? ??#", + # Tennessee + "?##-##?", + # Texas + "???-####", + # Utah + "?## #??", + "?## #??", + # Vermont + "??? ###", + "##??#", + "#??##", + "###?#", + "#?###", + # US Virgin Islands + "??? ###", + # Virginia + "???-####", + # Washington + "???####", + "###-???", + # West Virginia + "#?? ###", + "??? ###", + # Wisconsin + "???-####", + "###-???", + # Wyoming + "#-#####", + "#-####?", + "##-#####", + ) diff --git a/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..299caf0 Binary files /dev/null and b/venv/lib/python3.11/site-packages/faker/providers/automotive/en_US/__pycache__/__init__.cpython-311.pyc differ -- cgit v1.2.3