apiverve-zipcodeslookup 1.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apiverve_zipcodeslookup-1.1.4/LICENSE +21 -0
- apiverve_zipcodeslookup-1.1.4/PKG-INFO +153 -0
- apiverve_zipcodeslookup-1.1.4/README.md +109 -0
- apiverve_zipcodeslookup-1.1.4/pyproject.toml +48 -0
- apiverve_zipcodeslookup-1.1.4/setup.cfg +4 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/__init__.py +1 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/apiClient.py +38 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/exceptions.py +3 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/setup.py +21 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/tests/__init__.py +1 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup/tests/test_api.py +19 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup.egg-info/PKG-INFO +153 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup.egg-info/SOURCES.txt +14 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup.egg-info/dependency_links.txt +1 -0
- apiverve_zipcodeslookup-1.1.4/src/apiverve_zipcodeslookup.egg-info/top_level.txt +1 -0
- apiverve_zipcodeslookup-1.1.4/tests/test_api.py +27 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 APIVerve, and Evlar LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: apiverve-zipcodeslookup
|
|
3
|
+
Version: 1.1.4
|
|
4
|
+
Summary: Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.
|
|
5
|
+
Author-email: APIVerve <hello@apiverve.com>
|
|
6
|
+
Project-URL: Homepage, https://apiverve.com?utm_source=pypi
|
|
7
|
+
Project-URL: Repository, https://github.com/apiverve/zipcodes.Python-API
|
|
8
|
+
Project-URL: Documentation, https://docs.apiverve.com/api/zipcodes?utm_source=pypi
|
|
9
|
+
Project-URL: Twitter, https://twitter.com/apivervehq
|
|
10
|
+
Keywords: zip codes,zip code lookup,zip codes api,zip codes tool,zip codes software
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
17
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
18
|
+
Classifier: Intended Audience :: Education
|
|
19
|
+
Classifier: Intended Audience :: Science/Research
|
|
20
|
+
Classifier: Intended Audience :: Information Technology
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Utilities
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering
|
|
24
|
+
Classifier: Topic :: Education
|
|
25
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
26
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
27
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
28
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
30
|
+
Classifier: Topic :: Internet
|
|
31
|
+
Classifier: Topic :: Communications
|
|
32
|
+
Classifier: Topic :: Office/Business
|
|
33
|
+
Classifier: Topic :: Text Processing
|
|
34
|
+
Classifier: Topic :: Security
|
|
35
|
+
Classifier: Topic :: Database
|
|
36
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
37
|
+
Classifier: Topic :: Software Development :: Pre-processors
|
|
38
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
39
|
+
Classifier: Topic :: Software Development :: Testing
|
|
40
|
+
Classifier: Natural Language :: English
|
|
41
|
+
Requires-Python: >=3.12
|
|
42
|
+
Description-Content-Type: text/markdown
|
|
43
|
+
License-File: LICENSE
|
|
44
|
+
|
|
45
|
+
Zip Codes Lookup API
|
|
46
|
+
============
|
|
47
|
+
|
|
48
|
+
Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.
|
|
49
|
+
|
|
50
|
+

|
|
51
|
+

|
|
52
|
+

|
|
53
|
+
|
|
54
|
+
This is a Python API Wrapper for the [Zip Codes Lookup API](https://apiverve.com/marketplace/api/zipcodes)
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Installation
|
|
59
|
+
pip install apiverve-zipcodeslookup
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Configuration
|
|
64
|
+
|
|
65
|
+
Before using the zipcodes API client, you have to setup your account and obtain your API Key.
|
|
66
|
+
You can get it by signing up at [https://apiverve.com](https://apiverve.com)
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
71
|
+
|
|
72
|
+
The Zip Codes Lookup API documentation is found here: [https://docs.apiverve.com/api/zipcodes](https://docs.apiverve.com/api/zipcodes).
|
|
73
|
+
You can find parameters, example responses, and status codes documented here.
|
|
74
|
+
|
|
75
|
+
### Setup
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
# Import the client module
|
|
79
|
+
from apiverve_zipcodeslookup.apiClient import ZipcodesAPIClient
|
|
80
|
+
|
|
81
|
+
# Initialize the client with your APIVerve API key
|
|
82
|
+
api = ZipcodesAPIClient("[YOUR_API_KEY]")
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Perform Request
|
|
89
|
+
Using the API client, you can perform requests to the API.
|
|
90
|
+
|
|
91
|
+
###### Define Query
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
query = { "zip": "64082" }
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
###### Simple Request
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
# Make a request to the API
|
|
101
|
+
result = api.execute(query)
|
|
102
|
+
|
|
103
|
+
# Print the result
|
|
104
|
+
print(result)
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
###### Example Response
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
{
|
|
111
|
+
"status": "ok",
|
|
112
|
+
"error": null,
|
|
113
|
+
"data": {
|
|
114
|
+
"zipcode": "64082",
|
|
115
|
+
"state_abbr": "MO",
|
|
116
|
+
"latitude": "38.850243",
|
|
117
|
+
"longitude": "-94.39570",
|
|
118
|
+
"city": "Lees Summit",
|
|
119
|
+
"state": "Missouri"
|
|
120
|
+
},
|
|
121
|
+
"code": 200
|
|
122
|
+
}
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Customer Support
|
|
128
|
+
|
|
129
|
+
Need any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## Updates
|
|
134
|
+
Stay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Legal
|
|
139
|
+
|
|
140
|
+
All usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## License
|
|
145
|
+
Licensed under the The MIT License (MIT)
|
|
146
|
+
|
|
147
|
+
Copyright (©) 2024 APIVerve, and Evlar LLC
|
|
148
|
+
|
|
149
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
150
|
+
|
|
151
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
152
|
+
|
|
153
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Zip Codes Lookup API
|
|
2
|
+
============
|
|
3
|
+
|
|
4
|
+
Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
This is a Python API Wrapper for the [Zip Codes Lookup API](https://apiverve.com/marketplace/api/zipcodes)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
pip install apiverve-zipcodeslookup
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
Before using the zipcodes API client, you have to setup your account and obtain your API Key.
|
|
22
|
+
You can get it by signing up at [https://apiverve.com](https://apiverve.com)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
The Zip Codes Lookup API documentation is found here: [https://docs.apiverve.com/api/zipcodes](https://docs.apiverve.com/api/zipcodes).
|
|
29
|
+
You can find parameters, example responses, and status codes documented here.
|
|
30
|
+
|
|
31
|
+
### Setup
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
# Import the client module
|
|
35
|
+
from apiverve_zipcodeslookup.apiClient import ZipcodesAPIClient
|
|
36
|
+
|
|
37
|
+
# Initialize the client with your APIVerve API key
|
|
38
|
+
api = ZipcodesAPIClient("[YOUR_API_KEY]")
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Perform Request
|
|
45
|
+
Using the API client, you can perform requests to the API.
|
|
46
|
+
|
|
47
|
+
###### Define Query
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
query = { "zip": "64082" }
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
###### Simple Request
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
# Make a request to the API
|
|
57
|
+
result = api.execute(query)
|
|
58
|
+
|
|
59
|
+
# Print the result
|
|
60
|
+
print(result)
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
###### Example Response
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
{
|
|
67
|
+
"status": "ok",
|
|
68
|
+
"error": null,
|
|
69
|
+
"data": {
|
|
70
|
+
"zipcode": "64082",
|
|
71
|
+
"state_abbr": "MO",
|
|
72
|
+
"latitude": "38.850243",
|
|
73
|
+
"longitude": "-94.39570",
|
|
74
|
+
"city": "Lees Summit",
|
|
75
|
+
"state": "Missouri"
|
|
76
|
+
},
|
|
77
|
+
"code": 200
|
|
78
|
+
}
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Customer Support
|
|
84
|
+
|
|
85
|
+
Need any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Updates
|
|
90
|
+
Stay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Legal
|
|
95
|
+
|
|
96
|
+
All usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## License
|
|
101
|
+
Licensed under the The MIT License (MIT)
|
|
102
|
+
|
|
103
|
+
Copyright (©) 2024 APIVerve, and Evlar LLC
|
|
104
|
+
|
|
105
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
106
|
+
|
|
107
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
108
|
+
|
|
109
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "apiverve-zipcodeslookup"
|
|
3
|
+
version = "1.1.4"
|
|
4
|
+
authors = [
|
|
5
|
+
{ name="APIVerve", email="hello@apiverve.com" },
|
|
6
|
+
]
|
|
7
|
+
description = "Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city."
|
|
8
|
+
keywords = ["zip codes","zip code lookup","zip codes api","zip codes tool","zip codes software"]
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Development Status :: 5 - Production/Stable",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
18
|
+
"Intended Audience :: Healthcare Industry",
|
|
19
|
+
"Intended Audience :: Education",
|
|
20
|
+
"Intended Audience :: Science/Research",
|
|
21
|
+
"Intended Audience :: Information Technology",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
|
+
"Topic :: Utilities",
|
|
24
|
+
"Topic :: Scientific/Engineering",
|
|
25
|
+
"Topic :: Education",
|
|
26
|
+
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
27
|
+
"Topic :: Internet :: WWW/HTTP :: Site Management",
|
|
28
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
29
|
+
"Topic :: Software Development :: Libraries",
|
|
30
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
31
|
+
"Topic :: Internet",
|
|
32
|
+
"Topic :: Communications",
|
|
33
|
+
"Topic :: Office/Business",
|
|
34
|
+
"Topic :: Text Processing",
|
|
35
|
+
"Topic :: Security",
|
|
36
|
+
"Topic :: Database",
|
|
37
|
+
"Topic :: Software Development :: Code Generators",
|
|
38
|
+
"Topic :: Software Development :: Pre-processors",
|
|
39
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
40
|
+
"Topic :: Software Development :: Testing",
|
|
41
|
+
"Natural Language :: English",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[project.urls]
|
|
45
|
+
Homepage = "https://apiverve.com?utm_source=pypi"
|
|
46
|
+
Repository = "https://github.com/apiverve/zipcodes.Python-API"
|
|
47
|
+
Documentation = "https://docs.apiverve.com/api/zipcodes?utm_source=pypi"
|
|
48
|
+
Twitter = "https://twitter.com/apivervehq"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .apiClient import ZipcodesAPIClient
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import requests
|
|
2
|
+
|
|
3
|
+
class ZipcodesAPIClient:
|
|
4
|
+
def __init__(self, api_key, secure=True):
|
|
5
|
+
"""
|
|
6
|
+
Initialize the ZipcodesAPIClient with the API key and secure flag
|
|
7
|
+
:param api_key: API key
|
|
8
|
+
:param secure: Deprecated. Always set to True
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
self.api_key = api_key
|
|
12
|
+
self.secure = secure
|
|
13
|
+
self.base_url = 'https://api.apiverve.com/v1/zipcodes'
|
|
14
|
+
self.headers = {
|
|
15
|
+
'x-api-key': self.api_key,
|
|
16
|
+
'auth-mode': 'pypi-package'
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
def execute(self, params=None):
|
|
20
|
+
"""
|
|
21
|
+
Execute the API request
|
|
22
|
+
:param params: API parameters, if any
|
|
23
|
+
:return: API response
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
method = "GET"
|
|
27
|
+
|
|
28
|
+
try:
|
|
29
|
+
if method.upper() == 'POST':
|
|
30
|
+
response = requests.post(self.base_url, headers=self.headers, json=params)
|
|
31
|
+
else:
|
|
32
|
+
response = requests.get(self.base_url, headers=self.headers, params=params)
|
|
33
|
+
|
|
34
|
+
response.raise_for_status()
|
|
35
|
+
return response.json()
|
|
36
|
+
except requests.exceptions.RequestException as e:
|
|
37
|
+
print(f"An error occurred: {e}")
|
|
38
|
+
raise e
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='apiverve_zipcodeslookup',
|
|
5
|
+
version='1.1.4',
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
include_package_data=True,
|
|
8
|
+
install_requires=[
|
|
9
|
+
'requests',
|
|
10
|
+
'setuptools'
|
|
11
|
+
],
|
|
12
|
+
description='Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.',
|
|
13
|
+
author='APIVerve',
|
|
14
|
+
author_email='hello@apiverve.com',
|
|
15
|
+
url='https://apiverve.com',
|
|
16
|
+
classifiers=[
|
|
17
|
+
'Programming Language :: Python :: 3',
|
|
18
|
+
'Operating System :: OS Independent',
|
|
19
|
+
],
|
|
20
|
+
python_requires='>=3.6',
|
|
21
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Initialize test module
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import unittest
|
|
2
|
+
from apiverve_zipcodeslookup.apiClient import ZipcodesAPIClient
|
|
3
|
+
|
|
4
|
+
class TestClient(unittest.TestCase):
|
|
5
|
+
|
|
6
|
+
def setUp(self):
|
|
7
|
+
self.api_key = 'test_api_key'
|
|
8
|
+
self.client = ZipcodesAPIClient(self.api_key)
|
|
9
|
+
|
|
10
|
+
def test_get(self):
|
|
11
|
+
# Assuming there's an endpoint 'test_endpoint' for testing purposes
|
|
12
|
+
try:
|
|
13
|
+
response = self.client.get('test_endpoint')
|
|
14
|
+
self.assertIsInstance(response, dict)
|
|
15
|
+
except Exception as e:
|
|
16
|
+
self.fail(f"GET request failed with exception {e}")
|
|
17
|
+
|
|
18
|
+
if __name__ == '__main__':
|
|
19
|
+
unittest.main()
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: apiverve-zipcodeslookup
|
|
3
|
+
Version: 1.1.4
|
|
4
|
+
Summary: Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.
|
|
5
|
+
Author-email: APIVerve <hello@apiverve.com>
|
|
6
|
+
Project-URL: Homepage, https://apiverve.com?utm_source=pypi
|
|
7
|
+
Project-URL: Repository, https://github.com/apiverve/zipcodes.Python-API
|
|
8
|
+
Project-URL: Documentation, https://docs.apiverve.com/api/zipcodes?utm_source=pypi
|
|
9
|
+
Project-URL: Twitter, https://twitter.com/apivervehq
|
|
10
|
+
Keywords: zip codes,zip code lookup,zip codes api,zip codes tool,zip codes software
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
17
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
18
|
+
Classifier: Intended Audience :: Education
|
|
19
|
+
Classifier: Intended Audience :: Science/Research
|
|
20
|
+
Classifier: Intended Audience :: Information Technology
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Utilities
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering
|
|
24
|
+
Classifier: Topic :: Education
|
|
25
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
26
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
27
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
28
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
30
|
+
Classifier: Topic :: Internet
|
|
31
|
+
Classifier: Topic :: Communications
|
|
32
|
+
Classifier: Topic :: Office/Business
|
|
33
|
+
Classifier: Topic :: Text Processing
|
|
34
|
+
Classifier: Topic :: Security
|
|
35
|
+
Classifier: Topic :: Database
|
|
36
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
37
|
+
Classifier: Topic :: Software Development :: Pre-processors
|
|
38
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
39
|
+
Classifier: Topic :: Software Development :: Testing
|
|
40
|
+
Classifier: Natural Language :: English
|
|
41
|
+
Requires-Python: >=3.12
|
|
42
|
+
Description-Content-Type: text/markdown
|
|
43
|
+
License-File: LICENSE
|
|
44
|
+
|
|
45
|
+
Zip Codes Lookup API
|
|
46
|
+
============
|
|
47
|
+
|
|
48
|
+
Zip Codes Lookup is a simple tool for looking up the zip codes of a city. It returns the zip codes of the city.
|
|
49
|
+
|
|
50
|
+

|
|
51
|
+

|
|
52
|
+

|
|
53
|
+
|
|
54
|
+
This is a Python API Wrapper for the [Zip Codes Lookup API](https://apiverve.com/marketplace/api/zipcodes)
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Installation
|
|
59
|
+
pip install apiverve-zipcodeslookup
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Configuration
|
|
64
|
+
|
|
65
|
+
Before using the zipcodes API client, you have to setup your account and obtain your API Key.
|
|
66
|
+
You can get it by signing up at [https://apiverve.com](https://apiverve.com)
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
71
|
+
|
|
72
|
+
The Zip Codes Lookup API documentation is found here: [https://docs.apiverve.com/api/zipcodes](https://docs.apiverve.com/api/zipcodes).
|
|
73
|
+
You can find parameters, example responses, and status codes documented here.
|
|
74
|
+
|
|
75
|
+
### Setup
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
# Import the client module
|
|
79
|
+
from apiverve_zipcodeslookup.apiClient import ZipcodesAPIClient
|
|
80
|
+
|
|
81
|
+
# Initialize the client with your APIVerve API key
|
|
82
|
+
api = ZipcodesAPIClient("[YOUR_API_KEY]")
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Perform Request
|
|
89
|
+
Using the API client, you can perform requests to the API.
|
|
90
|
+
|
|
91
|
+
###### Define Query
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
query = { "zip": "64082" }
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
###### Simple Request
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
# Make a request to the API
|
|
101
|
+
result = api.execute(query)
|
|
102
|
+
|
|
103
|
+
# Print the result
|
|
104
|
+
print(result)
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
###### Example Response
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
{
|
|
111
|
+
"status": "ok",
|
|
112
|
+
"error": null,
|
|
113
|
+
"data": {
|
|
114
|
+
"zipcode": "64082",
|
|
115
|
+
"state_abbr": "MO",
|
|
116
|
+
"latitude": "38.850243",
|
|
117
|
+
"longitude": "-94.39570",
|
|
118
|
+
"city": "Lees Summit",
|
|
119
|
+
"state": "Missouri"
|
|
120
|
+
},
|
|
121
|
+
"code": 200
|
|
122
|
+
}
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Customer Support
|
|
128
|
+
|
|
129
|
+
Need any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## Updates
|
|
134
|
+
Stay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Legal
|
|
139
|
+
|
|
140
|
+
All usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## License
|
|
145
|
+
Licensed under the The MIT License (MIT)
|
|
146
|
+
|
|
147
|
+
Copyright (©) 2024 APIVerve, and Evlar LLC
|
|
148
|
+
|
|
149
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
150
|
+
|
|
151
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
152
|
+
|
|
153
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/apiverve_zipcodeslookup/__init__.py
|
|
5
|
+
src/apiverve_zipcodeslookup/apiClient.py
|
|
6
|
+
src/apiverve_zipcodeslookup/exceptions.py
|
|
7
|
+
src/apiverve_zipcodeslookup/setup.py
|
|
8
|
+
src/apiverve_zipcodeslookup.egg-info/PKG-INFO
|
|
9
|
+
src/apiverve_zipcodeslookup.egg-info/SOURCES.txt
|
|
10
|
+
src/apiverve_zipcodeslookup.egg-info/dependency_links.txt
|
|
11
|
+
src/apiverve_zipcodeslookup.egg-info/top_level.txt
|
|
12
|
+
src/apiverve_zipcodeslookup/tests/__init__.py
|
|
13
|
+
src/apiverve_zipcodeslookup/tests/test_api.py
|
|
14
|
+
tests/test_api.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
apiverve_zipcodeslookup
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import unittest
|
|
2
|
+
from apiverve_zipcodeslookup.apiClient import ZipcodesAPIClient
|
|
3
|
+
from unittest.mock import patch
|
|
4
|
+
|
|
5
|
+
class TestZipcodesAPIClient(unittest.TestCase):
|
|
6
|
+
|
|
7
|
+
def setUp(self):
|
|
8
|
+
self.api_key = 'test_api_key'
|
|
9
|
+
self.client = ZipcodesAPIClient(self.api_key)
|
|
10
|
+
|
|
11
|
+
@patch('apiverve_zipcodeslookup.apiClient.requests.get')
|
|
12
|
+
def test_make_request_success(self, mock_get):
|
|
13
|
+
# Assuming there's an endpoint 'test_endpoint' for testing purposes
|
|
14
|
+
mock_get.return_value.status_code = 200
|
|
15
|
+
mock_get.return_value.json.return_value = {'test': 'test'}
|
|
16
|
+
response = self.client.get('test_endpoint')
|
|
17
|
+
self.assertIsInstance(response, dict)
|
|
18
|
+
|
|
19
|
+
@patch('apiverve_zipcodeslookup.apiClient.requests.get')
|
|
20
|
+
def test_make_request_failure(self, mock_get):
|
|
21
|
+
# Assuming there's an endpoint 'test_endpoint' for testing purposes
|
|
22
|
+
mock_get.return_value.status_code = 404
|
|
23
|
+
with self.assertRaises(Exception):
|
|
24
|
+
self.client.get('test_endpoint')
|
|
25
|
+
|
|
26
|
+
if __name__ == '__main__':
|
|
27
|
+
unittest.main()
|