Closed venkatpolisetti closed 4 years ago
Describe the bug
I am using the following code and got only a few zip codes in Texas where as Texas has a lot of zip codes.
search = SearchEngine(simple_zipcode=False) zipcodes = search.by_state('Texas') for zip in zipcodes: print(f"zip: {zip.zipcode}, {zip.county}")
output: zip: 75001, Dallas County zip: 75002, Collin County zip: 75006, Dallas County zip: 75007, Denton County zip: 75009, Collin County
Expected behavior Should return all zip codes in the state of Texas.
Looks like I need to pass "returns" parameter so that it would return all of them.
Describe the bug
I am using the following code and got only a few zip codes in Texas where as Texas has a lot of zip codes.
search = SearchEngine(simple_zipcode=False) zipcodes = search.by_state('Texas') for zip in zipcodes: print(f"zip: {zip.zipcode}, {zip.county}")
output: zip: 75001, Dallas County zip: 75002, Collin County zip: 75006, Dallas County zip: 75007, Denton County zip: 75009, Collin County
Expected behavior Should return all zip codes in the state of Texas.