Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from .. import Provider as AutomotiveProvider 

2 

3 

4class Provider(AutomotiveProvider): 

5 # from 

6 # https://en.wikipedia.org/wiki/United_States_license_plate_designs_and_serial_formats#Current_standard-issue_passenger_plate_designs_and_serial_formats 

7 license_formats = ( 

8 # Alabama 

9 '#??####', 

10 '##??###', 

11 # Alaska 

12 '### ???', 

13 # American Samoa 

14 '####', 

15 # Arizona 

16 '???####', 

17 # Arkansas 

18 '### ???', 

19 '###???', 

20 # California 

21 '#???###', 

22 # Colarado 

23 '###-???', 

24 '???-###', 

25 # Conneticut 

26 '###-???', 

27 # Delaware 

28 '######', 

29 # DC 

30 '??-####', 

31 # Florda 

32 '??? ?##', 

33 '### ???', 

34 '?## #??', 

35 '### #??', 

36 # Georgia 

37 '???####', 

38 # Guam 

39 '?? ####', 

40 # Hawaii 

41 '??? ###', 

42 'H?? ###', 

43 'Z?? ###', 

44 'K?? ###', 

45 'L?? ###', 

46 'M?? ###', 

47 # Idaho 

48 '? ######', 

49 '#? #####', 

50 '#? ?####', 

51 '#? ??###', 

52 '#? #?#???', 

53 '#? ####?', 

54 '##? ####', 

55 # Illinois 

56 '?? #####', 

57 '??# ####', 

58 # Indiana 

59 '###?', 

60 '###??', 

61 '###???', 

62 # Iowa 

63 '??? ###', 

64 # Kansas 

65 '### ???', 

66 # Kentucky 

67 '### ???', 

68 # Louisiana 

69 '### ???', 

70 # Maine 

71 '#### ??', 

72 # Maryland 

73 '#??####', 

74 # Massachusetts 

75 '#??? ##', 

76 '#?? ###', 

77 '### ??#', 

78 '##? ?##', 

79 # Michigan 

80 '### ???', 

81 '#?? ?##', 

82 # Minnesota 

83 '###-???', 

84 # Mississippi 

85 '??? ###', 

86 # Missouri 

87 '??# ?#?', 

88 # Montana 

89 '#-#####?', 

90 '##-####?', 

91 # Nebraska 

92 '??? ###', 

93 '#-?####', 

94 '##-?###', 

95 '##-??##', 

96 # Nevada 

97 '##?•###', 

98 # New Hampshire 

99 '### ####', 

100 # New Jersey 

101 '?##-???', 

102 # New Mexico 

103 '###-???', 

104 '???-###', 

105 # New York 

106 '???-####', 

107 # North Carolina 

108 '###-????', 

109 # North Dakota 

110 '### ???', 

111 # Nothern Mariana Islands 

112 '??? ###', 

113 # Ohio 

114 '??? ####', 

115 # Oklahoma 

116 '???-###', 

117 # Oregon 

118 '### ???', 

119 # Pennsylvania 

120 '???-####', 

121 # Peurto Rico 

122 '???-###', 

123 # Rhode Island 

124 '###-###', 

125 # South Carolina 

126 '### #??', 

127 # South Dakota 

128 '#?? ###', 

129 '#?? ?##', 

130 '##? ###', 

131 '##? ?##', 

132 '##? ??#', 

133 # Tennessee 

134 '?##-##?', 

135 # Texas 

136 '???-####', 

137 # Utah 

138 '?## #??', 

139 '?## #??', 

140 # Vermont 

141 '??? ###', 

142 '##??#', 

143 '#??##', 

144 '###?#', 

145 '#?###', 

146 # US Virgin Islands 

147 '??? ###', 

148 # Virginia 

149 '???-####', 

150 # Washington 

151 '???####', 

152 '###-???', 

153 # West Virginia 

154 '#?? ###', 

155 '??? ###', 

156 # Wisconsin 

157 '???-####', 

158 '###-???', 

159 # Wyoming 

160 '#-#####', 

161 '#-####?', 

162 '##-#####', 

163 )