All us zip codes: List of 838 Alabama ZIP Codes: United States

python – List of all US ZIP Codes using uszipcode


Asked


Modified
6 months ago


Viewed
2k times

I’ve been trying to fetch all US Zipcodes for a web scraping project for my company.
I’m trying to use uszipcode library for doing it automatically rather than manually from the website im intersted in but cant figure it out.

this is my manual attempt:

from bs4 import BeautifulSoup
import requests
url = 'https://www.unitedstateszipcodes.org'
headers = {'User-Agent': 'Chrome/50.0.2661.102'}
page = requests.get(url, headers=headers)
soup = BeautifulSoup(page.text, 'html.parser')
hrefs = []
all_zipcodes = []
# Extract all
for data in soup.find_all('div', class_='state-list'):
    for a in data. find_all('a'):
        if a is not None:
            hrefs.append(a.get('href'))
hrefs.remove(None)
def get_zipcode_list():
    """
           get_zipcode_list gets the GET response from the web archives server using CDX API
           :return: CDX API output in json format.
        """
    for state in hrefs:
        state_url = url + state
        state_page = requests.get(state_url, headers=headers)
        states_soup = BeautifulSoup(state_page.text, 'html.parser')
        div = states_soup.find(class_='list-group')
        for a in div.findAll('a'):
            if str(a.string).isdigit():
                all_zipcodes.append(a.string)
    return all_zipcodes

This takes alot of time and would like to know how to do the same in more efficient way using uszipcodes

  • python
  • web-scraping
  • zipcode






3

You may try to search by pattern ”

s = SearchEngine()
l = s. by_pattern('', returns=1000000)
print(len(l))

More details in docs and in their basic tutorial






1

engine = SearchEngine()
allzips = {}
for i in range(100000): #Get zipcode info for every possible 5-digit combination
    zipcode = str(i).zfill(5)
    try: allzips[zipcode] = engine.by_zipcode(zipcode).to_dict()
    except: pass
#Convert dictionary to DataFrame
allzips = pd.DataFrame(allzips).T.reset_index(drop = True)

Since zip codes are only 5-digits, you can iterate up to 100k and see which zip codes don’t return an error. This solution gives you a DataFrame with all the stored information for each saved zip code

The regex that zip code in US have is [0-9]{5}(?:-[0-9]{4})?

you can simply check with re module

import re
regex = r"[0-9]{5}(?:-[0-9]{4})?"
if re.match(zipcode, regex):
    print("match")
else:
    print("not a match")

You can download the list of zip codes from the official source) and then parse it if it’s for one-time use and you don’t need any other metadata associated with each of the zip codes like the one which uszipcodes provides.

The uszipcodes also has another database which is quite big and should have all the data you need.

from uszipcode import SearchEngine
zipSearch = SearchEngine(simple_zipcode=False)
allZipCodes = zipSearch.by_pattern('', returns=200000)
print(len(allZipCodes)






2







Sign up or log in

Sign up using Google

Sign up using Facebook

Sign up using Email and Password

Post as a guest

Email

Required, but never shown

Post as a guest


Email

Required, but never shown






Zip Codes in Vermont

Vermont
Demographics by Cubit

Buy Demographics Reports

  • A-Z Counties & Cities
  • Zip Codes
  • Radius Reports
  • FAQs
  • About Us

Vermont / Zip Codes by Population

Below are 258 Vermont zip codes sorted by population from largest to smallest. The population data are from the 2021 American Community Survey. You can copy and paste this list directly into your favorite spreadsheet program. Don’t you just adore lovely numbers listed nicely in columns & rows? We do!

Some of these zips may be mostly within a neighboring state and only slightly within Vermont. We follow the US Census Bureau’s lead here and if any portion of the zip code intersects Vermont (no matter how small), we include that zip code both in the Vermont list below as well as in the neighboring state’s list of zip codes.

RankZip CodePopulation
10540132,724
20545222,154
30570120,523
40540319,877
50530116,560
60564116,521
70547816,003
80544616,001
90520114,831
100546813,055
110560212,495
120575310,806
130549510,628
140540810,097
15050019,332
16058199,304
17051569,251
18054888,269
19054048,224
20058557,900
21054827,714
22056637,083
23054436,410
24058516,075
25056616,052
26054916,049
27057336,039
28054655,540
29054545,343
30056725,315
31053465,283
32054505,221
33054614,813
34056764,747
35051434,689
36050604,515
37054774,374
38050894,245
39057434,234
40051014,206
41052554,085
42057353,947
43054453,900
44050913,720
45054893,561
46056563,552
47052503,462
48050553,374
49057773,315
50054763,248
51052573,225
52054643,173
53050683,158
54057643,117
55056793,076
56057633,030
57056553,009
58058602,996
59050332,978
60050482,885
61050322,655
62053542,587
63057732,493
64058432,394
65056732,363
66056772,303
67052612,294
68054582,268
69058592,241
70051492,223
71052622,196
72056802,190
73056672,184
74054722,025
75054052,015
76053631,994
77058281,900
78053451,846
79057651,838
80057591,833
81054401,783
82050611,754
83058221,735
84056581,720
85056601,719
86051511,717
87054871,697
88050451,646
89054621,634
90056741,632
91054861,593
92052511,572
93054591,544
94054941,525
95054441,518
96054571,508
97058291,503

Common Birds in Vermont

Please enable JavaScript

Common Birds in Vermont

98053531,471
99050381,451
100054731,398
101051481,393
102058711,381
103056511,380
104058361,372
105054551,371
106059061,370
107054831,357
108054391,347
109058571,345
110058301,327
111050461,322
112058451,318
113056541,310
114056821,305
115057381,279
116057671,250
117058461,247
118057341,244
119057691,225
120050511,217
121057391,214
122054741,211
123050771,208
124056471,202
125050651,198
126050431,173
127
TIE
050751,128
127
TIE
058241,128
129058321,115
130053611,114
131051581,112
132057701,092
133057321,083
134050361,058
135050881,038
136050391,019
13705037986
13805821965
13905774964
140
TIE
05650954
140
TIE
05456954
14205847945
14305675930
144
TIE
05343926
144
TIE
05761926
144
TIE
05872926
14705352882
14805669868
14905905858
15005492856
15105079839
15205778826
15305760807
15405757805
15505161796
15605448795
15705142789
15805772788
15905355787
16005153783
16105350755
16205866752
16305867746
16405471741
16505903739
16605652735
16705839733
16805853720
16905155705
17005035698
17105751697
17205040687
17305826668
17405069651
17505340648
17605873645
17705775642
17805874633
17905758631
18005359622
18105737619
18205653617
18305081610
18405342609
18505341601
186
TIE
05648589
186
TIE
05742589
18805736588
18905042586
19005252579
19105441576
19205072574
19305086567
19405842566
19505766549
19605059544
19705146543
19805463541
19905154533
20005649532
20105356529
20205827513
20305253509
20405076501
20505748479
20605344460
20705152457
20805062449
20905070442
21005875430
21105254420
21205150416
213
TIE
05260400
213
TIE
05442400
21505820397
21605358396
21705744393
21805776387
21905360379
22005841373
22105762372
22205837364
22305730359
22405862336
22505056330
22605053322
22705858320
22805850304
22905747300
23005351266
23105362263
23205030256
23305640242
23405083220
23505041216
23605904194
23705034186
23805052184
23905058172
24005141164
24105067155
24205681139
24305071123
24405050113
24505902112
24605670110
247
TIE
05447103
247
TIE
05907103
2490586896
2500508488
2510567881
2520582562
2530566649
2540584044
2550583342
2560576839
2570503119
2580590116

United States Census Bureau. B01001 SEX BY AGE, 2021 American Community Survey 5-Year Estimates. U.S. Census Bureau, American Community Survey Office. Web. 8 December 2022. http://www.census.gov/.

Postal codes Sosnovy Bor by streets and addresses

Post Office Sosnovy Bor 188540

st. 50 years of October, 4
opening hours:
weekdays: 8.00-20.00
Sat: 9.00-18.00
Sun: 9.00-14.00

Sosnovy Bor post office serves the following streets and house numbers in Sosnovy Bor:

Street House numbers
1st Ryabinovy ​​proezd
1 house
2
1st Lilac passage
1 house
5
12th East Drive
1 house
6
2nd Malinovy ​​proezd
3 houses
2, 13, 14
21st East Drive
1 house
7
3rd Raspberry Drive
1 house
1
4th Raspberry Drive
2 houses
1, 10
4th Pink passage
1 house
6
4th Lilac passage
1 house
7
5th Pink Drive
2 houses
4, 4/1
st. 50 years of October
13 houses
1, 4, 6, 8, 10, 12, 14, 15, 16, 16 bld. a, 17, 19, 21
st. Academician Aleksandrova
1 house
2
Alexander Nevsky Ave
17 houses
1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 35
st. Afanasiev
20 houses
1, 1b, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14 bld. – p. -, 16 p. a, 49, 52, 53, 70, 72
st. Baltic
3 houses
7, 8, 12
st. Coastal
7 houses
1, 1a, 19, 29, 37, 62, 67
st. Coastal
31 houses
1a, 12, 15a building. – str. -, 15a, 19/1 bldg. – p. -, 20 p. a, 24, 29, 31, 32a, 35 bldg. – str. -, 36A, 40a bldg. – pp. -, 41, 41a building. – str. -, 42B, 44A, 45 bldg. 1 building -, 45/1 building. – pp. -, 47, 48, 53 pp. 53, 53, 53a, 55, 55a, 59, 59a bldg. – p. -, 64b bldg. – pp. -, 66 pp. a, 70b
st. Birch
2 houses
5, 14
st. Blagodatnaya
2 houses
20 building – p. -, 26 building. – page –
st. Borovaya
6 houses
9, 14, 16, 18, 24, 26
st. High rise
10 houses
1, 1 page a, 2, 3, 4, 5, 5 page a, 6, 7, 9
avenue Geroev
4 houses
29 bldg. – p. -, 37 building. – p. -, 49 building. – p. -, 76a bldg. – page –
st. Children’s
1 house
5
ter. DNT Sosnovka
5 houses
2 building – p. -, 4 building. – p. -, 5 building. – p. -, 22 building. – p. -, 24 building. – page –
st. Good
3 houses
2, 4, 8
st. Eperina
5 houses
4, 8, 10, 22, 24
st. Zarechnaya
17 houses
1, 1a, 2, 3a building. – pp. -, 3, 3 building. – page -, 3 page a, 4, 5 page a, 5, 6, 7, 8, 9, 10, 12, 14
st. Komsomolskaya
39 houses
2b, 2a, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13a, 13, 14, 15, 16a building. – p. -, 16a, 16 p. a, 17, 18, 19, 20, 21, 21a, 22b, 22, 22a, 23, 24a, 24, 24 p. a, 25, 26 p. 2, 26 p. .1, 28, 30, 32
sh. Koporskoe
146 houses
2, 2a, 3 building. 3, 3 building. 2, 3 building. 7, 3 building. 8, 3 building. 1, 3 building. 5, 3 building. 4, 3, 3a, 4, 5, 6, 8, 8 bldg. – building -, 8a, 8b, 10/1, 10, 10a/2, 10a/1, 12, 15, 21, 21 building. 3, 21 building. 2, 21 building. 1, 21 building. 5, 21 building. 4, 22, 24, 24 bldg. 2, 24 building. 4, 24 building. 1, 24 building. 3, 24 building. 17, 25 building. 2, 25 building. 4, 25 building. 7, 25 building. 1, 25 building. 5, 25 building. 6, 25, 25 bldg. 3, 26 building. 6, 26 building. 2, 26 building. 3, 26, 26 bldg. 7, 26 building. 14, 26 building. 10, 26 building. 4, 26 building. 8, 26 building. 1, 26 building. 9, 26 bldg. 15, 26 building. 12, 26 building. 5, 26 building. 13, 27 building. 4, 27 building. 6, 27, 27 bldg. 5, 27 pp. a, 27 bldg. 7, 27 building. 2, 27 building. 3, 27 pp. b, 28, 30, 32, 33, 34, 46, 50, 56, 64, 70, 70 bld. 4, 70 building. 3, 70 building. 1, 70 building. 2, 72 building. 40 pp. -, 72 bldg. 7 p. -, 72 bldg. 9 building -, 72 building. 26 pp. -, 72 bldg. 16, 72 building. 58 pp. -, 72 bldg. 19 pp. -, 72 bldg. 17 pp. -, 72 bldg. 25 pp. -, 72 bldg. 14, 72 building. 30 pp. -, 72 bldg. 36 pp. -, 72 bldg. 31 pp. -, 72 bldg. 41 pp. -, 72 bldg. 43 pp. -, 72 bldg. 53 pp. -, 72 bldg. 62, 72 bldg. 32 pp. -, 72 bldg. 46 pp. -, 72 bldg. 13, 72 building. 33 pp. -, 72 bldg. 57 pp. -, 72 bldg. 42 pp. -, 72 bldg. 21 pp. -, 72, 72/1, 72/2, 72 bldg. 22 pp. -, 72 bldg. 18 pp. -, 72 bldg. 54 pp. -, 72 bldg. 45 pp. -, 72 bldg. 20 pp. -, 72 bldg. 3 building -, 72 building. 44 pp. -, 72 bldg. 37 pp. -, 72 bldg. 50 pp. -, 72 bldg. 10, 72 building. 15, 72 building. 38 pp. -, 72 bldg. 12, 72 building. 24 pp. -, 72 bldg. 39bldg. -, 72 bldg. 49 pp. -, 72 bldg. 4 building -, 72 building. 35 pp. -, 72 bldg. 47 pp. -, 72 bldg. 61 pp. -, 72 bldg. 60 pp. -, 72 bldg. 5 building -, 72 building. 56 pp. -, 72 bldg. 59 pp. -, 72 bldg. 23 pp. -, 72 bldg. 52 pp. -, 72 bldg. 28 pp. -, 72 bldg. 6 building -, 72 building. 55 pp. -, 72 bldg. 34 pp. -, 72 bldg. 11, 72 building. 27 pp. -, 72 bldg. 8 p. -, 72 bldg. 48 pp. -, 88, 88 pp. 2
st. Cosmonauts
16 houses
2 pages a, 2, 3, 4, 5, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26
st. Red Forts
1 house
26a building. – page –
st. Leningradskaya
63 houses
1, 2, 3a, 3, 4, 5, 6, 7, 8, 9, 10, 11, 11b building – pp. -, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 26, 28, 29 pp. AD, 29 pp. T, 30b, 30, 30a, 31 , 32b, 32, 33, 34, 35 bldg. – pp. -, 36, 38, 40, 42, 44, 44b, 44a, 46, 48, 49, 50, 52, 54, 56, 56a, 58, 60, 60a, 62, 64, 66, 66a, 70, 72, 80
st. Leninskaya
13 houses
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 19
st. Lesnaya
1 house
28
Lesnoy proezd
8 houses
2, 3, 4, 5, 5 bld. – pp. -, 6, 8, 10
st. Lipovo
10 houses
2b building – p. -, 4a bldg. – p. -, 11g building. – str. -, 22a bldg. – pp. -, 27, 27a bldg. – str. -, 32b bldg. – str. -, 35A, 38a bldg. – p. -, 64 building. – page –
st. Mira
8 houses
1, 1/1, 3, 5, 8, 9, 11, 11 bld. – page –
st. Youth
3 houses
5/1, 5/2, 9a building. – page –
st. Marine
17 houses
1, 4, 6, 9 pp. a, 9, 10, 11 bldg. – p. -, 17 building. – pp. -, 18, 20, 25, 27, 27a, 29, 30, 34, 38
st. Muravieva
26 houses
1, 2 building. – pp. -, 3a, 4 bldg. – p. -, 5a, 6, 7, 8a, 8, 9 p. a, 10 building. – str. -, 11a, 11/1, 12 building. – pp. -, 13, 14a, 14, 15a, 15, 16 building. – p. -, 18 building. – pp. -, 19a, 20 bldg. – pp. -, 20a, 20, 409
st. Embankment
28 houses
3, 4, 7, 9, 11, 12A, 16A, 26, 27, 28, 30, 35, 36, 36a, 38, 38a, 39, 40A, 42A, 44A, 45, 46 bld. – pp. -, 49, 49a, 51, 51A, 53, 101
st. Narva
1 house
7
st. Sciences
13 houses
1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 39 – page –
st. Nekrasov
4 houses
4, 20, 22, 24
st. Walnut
3 houses
8, 13 building. – p. -, 15 building. – page –
st. Pionerskaya
5 houses
1, 2, 4, 8, 10
st. Beach
8 houses
1, 3, 5, 5/1, 10, 12, 19, 23
st. Border
15 houses
1A, 2, 5, 5a, 12, 15, 19/2, 21, 23, 28 bld. 1, 32, 33, 40, 46, 47
st. Field
14 houses
2 building – str. -, 2a building. – str. -, 3, 4, 5, 5/2, 7/2, 7b building. – str. -, 7B, 8 building. – page -, 9, 18, 20, 42
ter. Prestige
2 houses
72, 110
st. Coastal
2 houses
22, 24
st. Priozernaya
3 houses
2, 8, 14
st. Trade union
19 houses
1, 2, 6 bldg. – p. -, 7 building. 11, 7 building. 3, 7 building. 9, 7 building. 20, 7 building. 13, 7 building. 17, 7 building. 6, 7 building. 12, 7 building. 14, 7 building. 15, 7 building. 5, 7 building. 16, 7 building. 2, 7 building. 10, 7, 7 bldg. 4
st. Rybatskaya
24 houses
1, 2 building. – pp. -, 2a, 3, 4a, 4, 5, 7, 8a, 8, 9, 10, 10a building. – pp. -, 11, 12a, 12, 14 bldg. – pp. -, 15a, 15, 17/1, 17, 25, 29, 31
st. Sadovaya
6 houses
3, 9 building. – pp. -, 10, 10 pp. -, 12, 18 building. – page –
st. Sadovaya
1 house
19
st. Siberian
17 houses
1, 2, 2a, 3, 4 bldg. – pages -, 5, 6, 6a, 7, 7a, 8, 9, 10, 11, 12, 14, 16
ter. SNT Chamomile
1 house
144
Soborniy Proezd
1 house
1
st. Soviet
3 houses
2 building – pp. -, 17, 17 building. – page –
st. Sokolova
3 houses
1, 15 building. – pp. -, 17
st. Solar
22 houses
1, 1A, 1/1, 1/2, 1d, 1c, 1b, 1 building. А, 3, 5, 7, 9, 9А, 11, 13а/1, 13а, 13, 15А, 15, 17, 19, 23v bldg. – page –
st. Solar
1 house
1a
st. Pine
5 houses
8, 22, 24, 26, 30
Sosnovy Bor
5 houses
1a building – p. -, 4 building. – p. -, 5 building. – p. -, 20a bldg. – p. -, 30 building. – page –
TSN DT Bastion ter. TSN
2 houses
53, 205
st. Harvest
11 houses
1, 2, 11, 13, 14, 15, 18, 22, 36, 42, 44
st. Ustyinskaya
5 houses
3, 6, 11, 11/1, 11/2

Post Office Sosnovy Bor 188541

Ave. Geroev, 32
opening hours:
weekdays: 8.00-20.00
Sat: 9.00-18.00
Sun: Closed

Sosnovy Bor 1 Post Office serves the following streets and house numbers in Sosnovy Bor:

Street House numbers
11th East Drive
3 houses
8, 12, 14
17th East Drive
1 house
eleven
Alexander Nevsky Ave
3 houses
16 bldg. – pp. -, 49, 49 p. a
st. Baltic
2 houses
5 bldg. – p. -, 13 building. – page –
st. Coastal
13 houses
1, 9, 19, 23, 41 pp. b, 51B, 52, 52/1, 64 pp. b, 64, 67, 68a pp. -, 72b
st. Blagoveshchenskaya
3 houses
5 bldg. – pp. -, 6, 8
st. Guards
2 houses
1, 15
avenue Geroev
47 houses
4, 5, 6, 8, 9, 9b, 11, 12, 13, 14, 15, 18, 18a, 19, 20, 20/1, 22, 24, 26, 28, 30, 31, 32A, 32, 33, 33B, 34, 36/1, 38, 40, 42, 44, 46, 47, 48, 50, 52, 64, 66, 66A, 68, 70, 72, 74, 76 p. a, 76 bld. – p. -, 78
st. Kalishchenskaya
11 houses
1, 2, 2 building. – pp. -, 3, 4, 5, 6 building. – pp. -, 7, 8, 9, 14
Kingiseppsky settlement
1 house
7
sh. Koporskoe
1 house
15/1
st. Red Forts
12 houses
1, 2, 4, 6, 8, 10, 14 bld. G1, 14 building G4, 14, 16, 18, 20
st. Lesnaya
6 houses
1, 2, 3, 4, 5, 6
st. Lipovo
2 houses
36, 58
Lipovsky proezd
26 houses
1a, 1, 2, 3a, 3, 4, 5a, 5, 6, 9b, 11, 13, 15, 17, 19b, 19a, 19, 21, 23a, 23, 23b, 29, 31, 31a, 31b building . – pp. -, 33
st. Maryasova
19 houses
1 building – pp. -, 3, 3 building. – pp. -, 5, 6 bldg. – pp. -, 7, 7 building. – p. -, 11 building. – pp. -, 11, 13, 13 building. – p. -, 15 building. – pp. -, 15, 17 building. – pp. -, 17, 19, 19 building. – pp. -, 21, 21 building. – page –
st. Youth
2 houses
29a pp. -, 40 pp. –
st. Marine
5 houses
11a building. – pp. -, 16, 16a pp. -, 17a pp. -, 23
st. Embankment
5 houses
5, 7a, 14b, 26a, 26b
st. Park
50 houses
6, 8 building. – pp. -, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20a, 20, 21, 21a, 22, 23 building – pp. -, 24, 25 building. – bld. – pp. -, 62, 64, 66, 68, 70, 72, 74
st. Preobrazhenskaya
7 houses
6, 16 building. – pp. -, 19, 21, 23, 28, 32
st. Coastal
1 house
16 bldg. – page –
Christmas Drive
1 house
2
st. Solar
17 houses
12, 14, 16, 16a, 18, 18a, 20, 22a, 22, 23, 23A, 24a, 25, 25A, 27, 27A, 29
Sosnovy Bor
3 houses
1, 2b pp. -, 40 pp. –
st. Uvarova
3 houses
3, 5, 6
Energetikov proezd
22 houses
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23

Post Office Sosnovy Bor 188542

st. Red Forts, 51
opening hours:
weekdays: 8.00-20.00
Sat: 9.00-18.00
Sun: closed

Sosnovy Bor 2 post office serves the following streets and house numbers in Sosnovy Bor:

Street House numbers
avenue Geroev
18 houses
17, 23, 25, 27, 29, 35, 37, 39, 41, 45, 49, 49A, 51, 53, 54, 55, 56, 57
st. Red Forts
32 houses
11, 11/2, 13, 13a, 15, 17, 19, 22, 22a, 23, 24, 25, 26a, 27, 29, 31, 33, 35, 35A, 37, 37A, 39, 41, 43, 43/1, 43A, 44, 45, 47, 49, 49a, 51
st. Machine builders
5 houses
2, 4, 6, 8, 10
st. Youth
41 houses
11/1, 11/2, 11а, 17, 19, 21, 21а, 23, 25, 27, 29, 31, 33, 35, 35/1, 35/2, 37, 39, 41, 43 bld. 2, 43 building. 1, 46, 48, 50, 52 bld. 1, 52, 54, 56, 60, 62, 64, 66, 68, 72, 74, 76, 78, 80, 82, 84, 86 bldg. – page –

Post Office Sosnovy Bor 188544

Ave. Geroev, 61A
opening hours:
weekdays: 8.00-20.00
Sat: 9.00-18.00
Sun: day off

The Sosnovy Bor 4 post office serves the following streets and house numbers in Sosnovy Bor:

Street House numbers
Alexander Nevsky Ave
4 houses
9A, 11A, 16, 53
Cherry pr-d
1 house
20
Vokzalny passage
10 houses
1, 1 pp. c, 3, 5, 7 pp. a, 7, 7a bldg. – pp. -, 11a, 11a bldg. 1, 11a building. 2
Garage passage
1 house
3
avenue Geroev
11 houses
58, 59, 59A, 60, 61, 61A, 62, 63, 63A, 65, 65A
st. Railway
1 house
3 building – page –
st. Country
25 houses
1a, 1, 2a, 2, 3 building. – pp. -, 3b, 3, 4a, 4, 5, 6 pp. a, 6, 6a bldg. – pp. -, 7, 8, 8a, 8b, 9, 10, 12b, 12, 18, 20, 22, 30
st. Industrial
5 houses
1, 3, 3 building. – pp. -, 5, 9
st. Red Forts
5 houses
3, 5, 7 bldg. – pp. -, 7, 9
st. Lipovo
2 houses
18, 23
st. Malaya Zemlya
10 houses
3, 4, 5, 6, 7, 8, 10, 12, 14, 16
st. Youth
37 houses
1, 2a, 3, 4A, 4, 4 bldg. – pages -, 5, 6, 6A, 7, 8, 9a, 9, 10, 11, 12A, 12, 15, 16, 16A, 18, 20, 22A, 22, 24A, 24, 26, 26A, 28 , 30A, 30, 32, 36, 40 bldg. – pp. -, 42, 44, 46a
st. Embankment of the river Voronka
4 houses
5 bldg. – pp. -, 5, 6, 8
st. New
2 houses
1, 14
st. Peter the Great
13 houses
4, 6, 8, 9, 9a, 10, 11, 13, 14 bldg. – pp. -, 15, 15-6 building. – p. -, 17 building. – pp. -, 19
st. Industrial
3 houses
3, 9, 9a
sh. Rakopezhskoe
4 houses
1 building – p. -, 1 p. -, 2 bldg. – pp. -, 100
Rowan pr-d
1 house
7
st. Sadovaya
1 house
15
st. Smolnenskaya
20 houses
1 building – pp. -, 2, 3, 4a, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 18a
ter. SNT Passage
2 houses
88, 88a
st. Solar
31 houses
26, 26a, 28, 30, 30/2, 31, 32, 33, 33/2, 33a, 33b, 34, 35, 35a, 36, 37, 37a, 39, 41, 43, 43/2, 45, 47, 49, 50, 51, 53, 55, 57 bld. 3, 57 building. 1, 57 building. 2
st. Pine
1 house
20
Khvoyny pr-d
1 house
eleven
Shkiperskiy pr-d
1 house
3

  • Heading:
    Society
  • Tags:
    Pinery
    , Mail
    , Postcode

All postal codes of Russia by region

Our database contains a total of 40193 postal codes of various settlements in the Russian Federation. Here is a list of all regions with an indication of the number of indices directly in each.

000000, OKTMO:

000
146

Adygea
OKATO: 7

00000, OKTMO: 7

00
136

Altai
OKATO: 84000000000, OKTMO: 84000000
103
Altai Territory
OKATO: 01000000000, OKTMO: 01000000
1 021
Amur Region
OKATO: 10000000000, OKTMO: 10000000
353
Arkhangelsk region
OKATO: 11000000000, OKTMO: 11000000
545
Astrakhan Region
OKATO: 12000000000, OKTMO: 12000000
242
Baikonur
OKATO: 55000000000, OKTMO: 55000000
3
Bashkortostan
OKATO: 80000000000, OKTMO: 80000000
1 242
Belgorod region
OKATO: 14000000000, OKTMO: 14000000
583
Bryansk region
OKATO: 15000000000, OKTMO: 15000000
586
Buryatia
OKATO: 81000000000, OKTMO: 81000000
276
Vladimir region
OKATO: 17000000000, OKTMO: 17000000
455
Volgograd region
OKATO: 18000000000, OKTMO: 18000000
866
Vologda region
OKATO: 1

00000, OKTMO: 1

00
652

Voronezh region
OKATO: 20000000000, OKTMO: 20000000
902
Dagestan
OKATO: 82000000000, OKTMO: 82000000
518
Jewish Autonomous Region
OKATO: 9

00000, OKTMO: 9

00
77

Trans-Baikal Territory
OKATO: 76000000000, OKTMO: 76000000
450
Ivanovo region
OKATO: 24000000000, OKTMO: 24000000
298
Ingushetia
OKATO: 26000000000, OKTMO: 26000000
57
Irkutsk region
OKATO: 25000000000, OKTMO: 25000000
757
Kabardino-Balkaria
OKATO: 83000000000, OKTMO: 83000000
208
Kaliningrad region
OKATO: 27000000000, OKTMO: 27000000
214
Kalmykia
OKATO: 85000000000, OKTMO: 85000000
135
Kaluga Region
OKATO: 2

00000, OKTMO: 2

00
444

Kamchatka Territory
OKATO: 30000000000, OKTMO: 30000000
107
Karachay-Cherkessia
OKATO:
Karelia
OKATO: 86000000000, OKTMO: 86000000
261
Kemerovo region – Kuzbass region
OKATO: 32000000000, OKTMO: 32000000
582
Kirov region
OKATO: 33000000000, OKTMO: 33000000
534
Komi
OKATO: 87000000000, OKTMO: 87000000
349
Kostroma region
OKATO: 34000000000, OKTMO: 34000000
382
Krasnodar Territory
OKATO: 03000000000, OKTMO: 03000000
1 231
Krasnoyarsk Territory
OKATO: 04000000000, OKTMO: 04000000
751
Crimea
OKATO: 35000000000, OKTMO: 35000000
538
Kurgan region
OKATO: 37000000000, OKTMO: 37000000
491
Kursk region
OKATO: 38000000000, OKTMO: 38000000
613
Leningrad region
OKATO: 41000000000, OKTMO: 41000000
410
Lipetsk region
OKATO: 42000000000, OKTMO: 42000000
525
Magadan region
OKATO: 44000000000, OKTMO: 44000000
48
Mari El
OKATO: 88000000000, OKTMO: 88000000
234
Mordovia
OKATO: 8

00000, OKTMO: 8

00
376

Moscow
OKATO: 45000000000, OKTMO: 45000000
591
Moscow region
OKATO: 46000000000, OKTMO: 46000000
1 170
Murmansk region
OKATO: 47000000000, OKTMO: 47000000
127
Nenets Autonomous District
OKATO: 11100000000, OKTMO: 11800000
30
Nizhny Novgorod Region
OKATO: 22000000000, OKTMO: 22000000
994
Novgorod region
OKATO: 4

00000, OKTMO: 4

00
181

Novosibirsk region
OKATO: 50000000000, OKTMO: 50000000
774
Omsk region
OKATO: 52000000000, OKTMO: 52000000
599
Orenburg region
OKATO: 53000000000, OKTMO: 53000000
850
Oryol region
OKATO: 54000000000, OKTMO: 54000000
455
Penza region
OKATO: 56000000000, OKTMO: 56000000
557
Perm Territory
OKATO: 57000000000, OKTMO: 57000000
724
Primorsky Krai
OKATO: 05000000000, OKTMO: 05000000
515
Pskov region
OKATO: 58000000000, OKTMO: 58000000
461
Rostov region
OKATO: 60000000000, OKTMO: 60000000
1 134
Ryazan region
OKATO: 61000000000, OKTMO: 61000000
544
Samara region
OKATO: 36000000000, OKTMO: 36000000
692
St. Petersburg
OKATO: 40000000000, OKTMO: 40000000
263
Saratov region
OKATO: 63000000000, OKTMO: 63000000
910
Sakha / Yakutia /
OKATO: 98000000000, OKTMO: 98000000
41
Sakhalin Region
OKATO: 64000000000, OKTMO: 64000000
164
Sverdlovsk region
OKATO: 65000000000, OKTMO: 65000000
913
Sevastopol
OKATO: 67000000000, OKTMO: 67000000
62
North Ossetia – Alania
OKATO:

000000, OKTMO:

000
166

Smolensk region
OKATO: 66000000000, OKTMO: 66000000
511
Stavropol Territory
OKATO: 07000000000, OKTMO: 07000000
607
Tambov region
OKATO: 68000000000, OKTMO: 68000000
455
Tatarstan
OKATO: 92000000000, OKTMO: 92000000
1 146
Tver region
OKATO: 28000000000, OKTMO: 28000000
891
Tomsk region
OKATO: 6

00000, OKTMO: 6

00
305

Tula region
OKATO: 70000000000, OKTMO: 70000000
556
Tyva
OKATO: 93000000000, OKTMO: 93000000
120
Tyumen region
OKATO: 71000000000, OKTMO: 71000000
425
Udmurtia
OKATO: 94000000000, OKTMO: 94000000
482
Ulyanovsk region
OKATO: 73000000000, OKTMO: 73000000
504
Khabarovsk Territory
OKATO: 08000000000, OKTMO: 08000000
313
Khakassia
OKATO: 95000000000, OKTMO: 95000000
133
Khanty-Mansi Autonomous Okrug – Yugra JSC
OKATO: 71100000000, OKTMO: 71800000
219
Chelyabinsk region
OKATO: 75000000000, OKTMO: 75000000
711
Chechnya
OKATO: 96000000000, OKTMO: 96000000
277
Chuvash Republic – Chuvashia
OKATO: 97000000000, OKTMO: 97000000
374
Chukotka AO
OKATO: 77000000000, OKTMO: 77000000
51
Yamalo-Nenets Autonomous Okrug
OKATO: 71140000000, OKTMO: 71

0
99

Yaroslavl region
OKATO: 78000000000, OKTMO: 78000000
396

Share a link to this page:

Search zip code in the database

Enter 6 digits of the zip code or use the special form
to search by street name.

Leave a Reply

Your email address will not be published. Required fields are marked *