ipspot 0.0.0__py3-none-any.whl → 0.1__py3-none-any.whl

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.
ipspot/__init__.py CHANGED
@@ -1,2 +1,5 @@
1
- # -*- coding: utf-8 -*-
2
- """ipspot modules."""
1
+ # -*- coding: utf-8 -*-
2
+ """ipspot modules."""
3
+ from .params import IPSPOT_VERSION, IPv4API
4
+ from .functions import get_private_ipv4, get_public_ipv4
5
+ __version__ = IPSPOT_VERSION
ipspot/__main__.py ADDED
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*-
2
+ """ipspot main."""
3
+ from .functions import main
4
+
5
+
6
+ if __name__ == "__main__":
7
+ main()
ipspot/functions.py ADDED
@@ -0,0 +1,179 @@
1
+ # -*- coding: utf-8 -*-
2
+ """ipspot functions."""
3
+ import argparse
4
+ import socket
5
+ from typing import Union, Dict, Any
6
+ import requests
7
+ from art import tprint
8
+ from .params import IPv4API, PARAMETERS_NAME_MAP
9
+ from .params import IPSPOT_OVERVIEW, IPSPOT_REPO, IPSPOT_VERSION
10
+
11
+
12
+ def ipspot_info() -> None:
13
+ """Print ipspot details."""
14
+ tprint("IPSpot")
15
+ tprint("V:" + IPSPOT_VERSION)
16
+ print(IPSPOT_OVERVIEW)
17
+ print(IPSPOT_REPO)
18
+
19
+
20
+ def get_private_ipv4() -> Dict[str, Union[bool, Dict[str, str], str]]:
21
+ """Retrieve the private IPv4 address."""
22
+ try:
23
+ hostname = socket.gethostname()
24
+ private_ip = socket.gethostbyname(hostname)
25
+ return {"status": True, "data": {"ip": private_ip}}
26
+ except Exception as e:
27
+ return {"status": False, "error": str(e)}
28
+
29
+
30
+ def _ipapi_ipv4(geo: bool=False) -> Dict[str, Union[bool, Dict[str, Union[str, float]], str]]:
31
+ """
32
+ Get public IP and geolocation using ip-api.com.
33
+
34
+ :param geo: geolocation flag
35
+ """
36
+ try:
37
+ response = requests.get("http://ip-api.com/json/", timeout=5)
38
+ response.raise_for_status()
39
+ data = response.json()
40
+
41
+ if data.get("status") != "success":
42
+ return {"status": False, "error": "ip-api lookup failed"}
43
+ result = {"status": True, "data": {"ip": data.get("query"), "api": "ip-api.com"}}
44
+ if geo:
45
+ geo_data = {
46
+ "city": data.get("city"),
47
+ "region": data.get("regionName"),
48
+ "country": data.get("country"),
49
+ "country_code": data.get("countryCode"),
50
+ "latitude": data.get("lat"),
51
+ "longitude": data.get("lon"),
52
+ "organization": data.get("org"),
53
+ "timezone": data.get("timezone")
54
+ }
55
+ result["data"].update(geo_data)
56
+ return result
57
+ except Exception as e:
58
+ return {"status": False, "error": str(e)}
59
+
60
+
61
+ def _ipinfo_ipv4(geo: bool=False) -> Dict[str, Union[bool, Dict[str, Union[str, float]], str]]:
62
+ """
63
+ Get public IP and geolocation using ipinfo.io.
64
+
65
+ :param geo: geolocation flag
66
+ """
67
+ try:
68
+ response = requests.get("https://ipinfo.io/json", timeout=5)
69
+ response.raise_for_status()
70
+ data = response.json()
71
+ result = {"status": True, "data": {"ip": data.get("ip"), "api": "ipinfo.io"}}
72
+ if geo:
73
+ loc = data.get("loc", "").split(",")
74
+ geo_data = {
75
+ "city": data.get("city"),
76
+ "region": data.get("region"),
77
+ "country": None,
78
+ "country_code": data.get("country"),
79
+ "latitude": float(loc[0]) if len(loc) == 2 else None,
80
+ "longitude": float(loc[1]) if len(loc) == 2 else None,
81
+ "organization": data.get("org"),
82
+ "timezone": data.get("timezone")
83
+ }
84
+ result["data"].update(geo_data)
85
+ return result
86
+ except Exception as e:
87
+ return {"status": False, "error": str(e)}
88
+
89
+
90
+ def get_public_ipv4(api: IPv4API=IPv4API.AUTO,
91
+ geo: bool=False) -> Dict[str, Union[bool, Dict[str, Union[str, float]], str]]:
92
+ """
93
+ Get public IPv4 and geolocation info based on the selected API.
94
+
95
+ :param api: public IPv4 API
96
+ :param geo: geolocation flag
97
+ """
98
+ api_map = {
99
+ IPv4API.IPAPI: _ipapi_ipv4,
100
+ IPv4API.IPINFO: _ipinfo_ipv4,
101
+ }
102
+
103
+ if api == IPv4API.AUTO:
104
+ for _, func in api_map.items():
105
+ result = func(geo=geo)
106
+ if result["status"]:
107
+ return result
108
+ return {"status": False, "error": "All attempts failed."}
109
+ else:
110
+ func = api_map.get(api)
111
+ if func:
112
+ return func(geo=geo)
113
+ return {"status": False, "error": "Unsupported API: {api}".format(api=api)}
114
+
115
+
116
+ def filter_parameter(parameter: Any) -> Any:
117
+ """
118
+ Filter input parameter.
119
+
120
+ :param parameter: input parameter
121
+ """
122
+ if parameter is None:
123
+ return "N/A"
124
+ if isinstance(parameter, str) and len(parameter.strip()) == 0:
125
+ return "N/A"
126
+ return parameter
127
+
128
+
129
+ def display_ip_info(ipv4_api: IPv4API = IPv4API.AUTO, geo: bool=False) -> None:
130
+ """
131
+ Print collected IP and location data.
132
+
133
+ :param ipv4_api: public IPv4 API
134
+ :param geo: geolocation flag
135
+ """
136
+ private_result = get_private_ipv4()
137
+ print("Private IP:\n")
138
+ print(" IP: {private_result[data][ip]}".format(private_result=private_result) if private_result["status"]
139
+ else " Error: {private_result[error]}".format(private_result=private_result))
140
+
141
+ public_title = "\nPublic IP"
142
+ if geo:
143
+ public_title += " and Location Info"
144
+ public_title += ":\n"
145
+ print(public_title)
146
+ public_result = get_public_ipv4(ipv4_api, geo=geo)
147
+ if public_result["status"]:
148
+ for name, parameter in sorted(public_result["data"].items()):
149
+ print(
150
+ " {name}: {parameter}".format(
151
+ name=PARAMETERS_NAME_MAP[name],
152
+ parameter=filter_parameter(parameter)))
153
+ else:
154
+ print(" Error: {public_result[error]}".format(public_result=public_result))
155
+
156
+
157
+ def main() -> None:
158
+ """CLI main function."""
159
+ parser = argparse.ArgumentParser()
160
+ parser.add_argument(
161
+ '--ipv4-api',
162
+ help='public IPv4 API',
163
+ type=str.lower,
164
+ choices=[
165
+ x.value for x in IPv4API],
166
+ default=IPv4API.AUTO.value)
167
+ parser.add_argument('--info', help='info', nargs="?", const=1)
168
+ parser.add_argument('--version', help='version', nargs="?", const=1)
169
+ parser.add_argument('--no-geo', help='no geolocation data', nargs="?", const=1, default=False)
170
+
171
+ args = parser.parse_args()
172
+ if args.version:
173
+ print(IPSPOT_VERSION)
174
+ elif args.info:
175
+ ipspot_info()
176
+ else:
177
+ ipv4_api = IPv4API(args.ipv4_api)
178
+ geo = not args.no_geo
179
+ display_ip_info(ipv4_api=ipv4_api, geo=geo)
ipspot/params.py ADDED
@@ -0,0 +1,35 @@
1
+ # -*- coding: utf-8 -*-
2
+ """ipspot params."""
3
+ from enum import Enum
4
+
5
+ IPSPOT_VERSION = "0.1"
6
+
7
+ IPSPOT_OVERVIEW = '''
8
+ IPSpot is a Python library for retrieving the current system's IP address and location information.
9
+ It currently supports public and private IPv4 detection using multiple API providers with a fallback mechanism for reliability.
10
+ Designed with simplicity and modularity in mind, IPSpot offers quick IP and geolocation lookups directly from your machine.
11
+ '''
12
+
13
+ IPSPOT_REPO = "Repo : https://github.com/openscilab/ipspot"
14
+
15
+
16
+ class IPv4API(Enum):
17
+ """Public IPv4 API enum."""
18
+
19
+ AUTO = "auto"
20
+ IPAPI = "ipapi"
21
+ IPINFO = "ipinfo"
22
+
23
+
24
+ PARAMETERS_NAME_MAP = {
25
+ "ip": "IP",
26
+ "city": "City",
27
+ "region": "Region",
28
+ "country": "Country",
29
+ "country_code": "Country Code",
30
+ "timezone": "Timezone",
31
+ "latitude": "Latitude",
32
+ "longitude": "Longitude",
33
+ "organization": "Organization",
34
+ "api": "API"
35
+ }
@@ -0,0 +1,271 @@
1
+ Metadata-Version: 2.4
2
+ Name: ipspot
3
+ Version: 0.1
4
+ Summary: IPSpot: A Python Tool to Fetch the System's IP Address
5
+ Home-page: https://github.com/openscilab/ipspot
6
+ Download-URL: https://github.com/openscilab/ipspot/tarball/v0.1
7
+ Author: IPSpot Development Team
8
+ Author-email: ipspot@openscilab.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/openscilab/ipspot
11
+ Keywords: ip ipv4 geo geolocation network location ipspot cli
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Natural Language :: English
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Intended Audience :: Developers
24
+ Classifier: Intended Audience :: Education
25
+ Classifier: Intended Audience :: End Users/Desktop
26
+ Classifier: Topic :: System :: Monitoring
27
+ Classifier: Topic :: System :: Networking :: Monitoring
28
+ Classifier: Topic :: Utilities
29
+ Requires-Python: >=3.7
30
+ Description-Content-Type: text/markdown
31
+ License-File: LICENSE
32
+ License-File: AUTHORS.md
33
+ Requires-Dist: art>=5.3
34
+ Requires-Dist: requests>=2.20.0
35
+ Dynamic: author
36
+ Dynamic: author-email
37
+ Dynamic: classifier
38
+ Dynamic: description
39
+ Dynamic: description-content-type
40
+ Dynamic: download-url
41
+ Dynamic: home-page
42
+ Dynamic: keywords
43
+ Dynamic: license
44
+ Dynamic: license-file
45
+ Dynamic: project-url
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+
50
+
51
+ <div align="center">
52
+ <img src="https://github.com/openscilab/ipspot/raw/main/otherfiles/logo.png" width="350">
53
+ <h1>IPSpot: A Python Tool to Fetch the System's IP Address</h1>
54
+ <br/>
55
+ <a href="https://badge.fury.io/py/ipspot"><img src="https://badge.fury.io/py/ipspot.svg" alt="PyPI version"></a>
56
+ <a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
57
+ <a href="https://github.com/openscilab/ipspot"><img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/openscilab/ipspot"></a>
58
+ </div>
59
+
60
+ ## Overview
61
+
62
+ <p align="justify">
63
+ <b>IPSpot</b> is a Python library for retrieving the current system's IP address and location information. It currently supports public and private <b>IPv4</b> detection using multiple API providers with a fallback mechanism for reliability. Designed with simplicity and modularity in mind, <b>IPSpot</b> offers quick IP and geolocation lookups directly from your machine.
64
+ </p>
65
+
66
+ <table>
67
+ <tr>
68
+ <td align="center">PyPI Counter</td>
69
+ <td align="center"><a href="http://pepy.tech/project/ipspot"><img src="http://pepy.tech/badge/ipspot"></a></td>
70
+ </tr>
71
+ <tr>
72
+ <td align="center">Github Stars</td>
73
+ <td align="center"><a href="https://github.com/openscilab/ipspot"><img src="https://img.shields.io/github/stars/openscilab/ipspot.svg?style=social&label=Stars"></a></td>
74
+ </tr>
75
+ </table>
76
+
77
+
78
+
79
+ <table>
80
+ <tr>
81
+ <td align="center">Branch</td>
82
+ <td align="center">main</td>
83
+ <td align="center">dev</td>
84
+ </tr>
85
+ <tr>
86
+ <td align="center">CI</td>
87
+ <td align="center"><img src="https://github.com/openscilab/ipspot/actions/workflows/test.yml/badge.svg?branch=main"></td>
88
+ <td align="center"><img src="https://github.com/openscilab/ipspot/actions/workflows/test.yml/badge.svg?branch=dev"></td>
89
+ </tr>
90
+ </table>
91
+
92
+
93
+ ## Installation
94
+
95
+ ### Source Code
96
+ - Download [Version 0.1](https://github.com/openscilab/ipspot/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/ipspot/archive/dev.zip)
97
+ - `pip install .`
98
+
99
+ ### PyPI
100
+
101
+ - Check [Python Packaging User Guide](https://packaging.python.org/installing/)
102
+ - `pip install ipspot==0.1`
103
+
104
+
105
+ ## Usage
106
+
107
+ ### Library
108
+
109
+ #### Public IPv4
110
+
111
+ ```pycon
112
+ >>> from ipspot import get_public_ipv4, IPv4API
113
+ >>> get_public_ipv4(api=IPv4API.IPAPI)
114
+ {'status': True, 'data': {'ip': 'xx.xx.xx.xx', 'api': 'ip-api.com'}}
115
+ >>> get_public_ipv4(api=IPv4API.IPAPI, geo=True)
116
+ {'data': {'country_code': 'GB', 'latitude': 50.9097, 'longitude': -1.4043, 'api': 'ip-api.com', 'country': 'United Kingdom', 'timezone': 'Europe/London', 'organization': '', 'region': 'England', 'ip': 'xx.xx.xx.xx', 'city': 'Southampton'}, 'status': True}
117
+ ```
118
+
119
+ #### Private IPv4
120
+
121
+ ```pycon
122
+ >>> from ipspot import get_private_ipv4
123
+ >>> get_private_ipv4()
124
+ {'status': True, 'data': {'ip': '10.36.18.154'}}
125
+ ```
126
+
127
+ ### CLI
128
+
129
+ ℹ️ You can use `ipspot` or `python -m ipspot` to run this program
130
+
131
+ #### Version
132
+
133
+ ```console
134
+ > ipspot --version
135
+
136
+ 0.1
137
+ ```
138
+
139
+ #### Info
140
+
141
+ ```console
142
+ > ipspot --info
143
+
144
+ ___ ____ ____ _
145
+ |_ _|| _ \ / ___| _ __ ___ | |_
146
+ | | | |_) |\___ \ | '_ \ / _ \ | __|
147
+ | | | __/ ___) || |_) || (_) || |_
148
+ |___||_| |____/ | .__/ \___/ \__|
149
+ |_|
150
+
151
+ __ __ ___ _
152
+ \ \ / / _ / _ \ / |
153
+ \ \ / / (_)| | | | | |
154
+ \ V / _ | |_| | _ | |
155
+ \_/ (_) \___/ (_)|_|
156
+
157
+
158
+
159
+ IPSpot is a Python library for retrieving the current system's IP address and location information.
160
+ It currently supports public and private IPv4 detection using multiple API providers with a fallback mechanism for reliability.
161
+ Designed with simplicity and modularity in mind, IPSpot offers quick IP and geolocation lookups directly from your machine.
162
+
163
+ Repo : https://github.com/openscilab/ipspot
164
+
165
+ ```
166
+
167
+ #### Basic
168
+
169
+ ```console
170
+ > ipspot
171
+ Private IP:
172
+
173
+ 10.36.18.154
174
+
175
+ Public IP and Location Info:
176
+
177
+ API: ip-api.com
178
+ City: Southampton
179
+ Country: United Kingdom
180
+ Country Code: GB
181
+ IP: xx.xx.xx.xx
182
+ Latitude: 50.9097
183
+ Longitude: -1.4043
184
+ Organization: N/A
185
+ Region: England
186
+ Timezone: Europe/London
187
+ ```
188
+
189
+ #### IPv4 API
190
+
191
+ ℹ️ `ipv4-api` valid choices: [`auto`, `ipapi`, `ipinfo`]
192
+
193
+ ℹ️ The default value: `auto`
194
+
195
+ ```console
196
+ > ipspot --ipv4-api="ipinfo"
197
+ Private IP:
198
+
199
+ 10.36.18.154
200
+
201
+ Public IP and Location Info:
202
+
203
+ API: ipinfo.io
204
+ City: Leatherhead
205
+ Country: N/A
206
+ Country Code: GB
207
+ IP: xx.xx.xx.xx
208
+ Latitude: 51.2965
209
+ Longitude: -0.3338
210
+ Organization: AS212238 Datacamp Limited
211
+ Region: England
212
+ Timezone: Europe/London
213
+ ```
214
+
215
+ #### No Geolocation
216
+
217
+ ```console
218
+ > ipspot --no-geo
219
+ Private IP:
220
+
221
+ IP: 10.36.18.154
222
+
223
+ Public IP:
224
+
225
+ API: ipinfo.io
226
+ IP: xx.xx.xx.xx
227
+ ```
228
+
229
+ ## Issues & Bug Reports
230
+
231
+ Just fill an issue and describe it. We'll check it ASAP!
232
+
233
+ - Please complete the issue template
234
+
235
+
236
+ ## Show Your Support
237
+
238
+ <h3>Star This Repo</h3>
239
+
240
+ Give a ⭐️ if this project helped you!
241
+
242
+ <h3>Donate to Our Project</h3>
243
+
244
+ If you do like our project and we hope that you do, can you please support us? Our project is not and is never going to be working for profit. We need the money just so we can continue doing what we do ;-)
245
+
246
+ <a href="https://openscilab.com/#donation" target="_blank"><img src="https://github.com/openscilab/ipspot/raw/main/otherfiles/donation.png" height="90px" width="270px" alt="IPSpot Donation"></a>
247
+
248
+
249
+ # Changelog
250
+ All notable changes to this project will be documented in this file.
251
+
252
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
253
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
254
+
255
+ ## [Unreleased]
256
+ ## [0.1] - 2025-04-25
257
+ ### Added
258
+ - Support [ipinfo.io](https://ipinfo.io)
259
+ - Support [ip-api.com](https://ip-api.com)
260
+ - `get_private_ipv4` function
261
+ - `get_public_ipv4` function
262
+ - `--info` and `--version` arguments
263
+ - `--ipv4-api` argument
264
+ - `--no-geo` argument
265
+ - Logo
266
+
267
+ [Unreleased]: https://github.com/openscilab/ipspot/compare/v0.1...dev
268
+ [0.1]: https://github.com/openscilab/ipspot/compare/3216fb7...v0.1
269
+
270
+
271
+
@@ -0,0 +1,11 @@
1
+ ipspot/__init__.py,sha256=cxty-JGyo_sLeQd7bHrXUoEabl3QhLtgA9UtLcStp6o,176
2
+ ipspot/__main__.py,sha256=17x2Q5vGORstO8mZ8B9aDixcOK5Gl71Ej5fC5P1EBKY,111
3
+ ipspot/functions.py,sha256=rXSoVRGDCDeH4anda8_o3rgE0jl5VqvfoDA-DL_bnDo,5936
4
+ ipspot/params.py,sha256=J-O4-qaRLQCAVc9a0yKJpFC0LCOG1SvsHBgjA-T59pY,936
5
+ ipspot-0.1.dist-info/licenses/AUTHORS.md,sha256=AgFL2paPd70ItL_YK18lWm_NjNWytKZHmR57o-et8kU,236
6
+ ipspot-0.1.dist-info/licenses/LICENSE,sha256=0aOd4wzZRoSH_35UZXRHS7alPFTtuFEBJrajLuonEIw,1067
7
+ ipspot-0.1.dist-info/METADATA,sha256=qtGhxEFLspKwu1qFF3IOE157RImRrlOroU2fbBdz7zs,7667
8
+ ipspot-0.1.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
9
+ ipspot-0.1.dist-info/entry_points.txt,sha256=SYgm9eGlJY7AGqi4_PmFVXwjEoylPPnAHeAeJPtYdjk,49
10
+ ipspot-0.1.dist-info/top_level.txt,sha256=v0WgE1z2iCy_bXU53fVcllwHLTvGNBIvq8u3KPC2_Sc,7
11
+ ipspot-0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ipspot = ipspot.functions:main
@@ -0,0 +1,11 @@
1
+ # Core Developers
2
+ ----------
3
+ - Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi)) **
4
+
5
+ ** **Maintainer**
6
+
7
+ # Other Contributors
8
+ ----------
9
+ - [ChatGPT](https://chat.openai.com/) ++
10
+
11
+ ++ Graphic designer
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 OpenSciLab
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.
@@ -1,23 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: ipspot
3
- Version: 0.0.0
4
- Summary: This name has been reserved using Reserver
5
- Home-page: https://url.com
6
- Download-URL: https://download_url.com
7
- Author: Development Team
8
- Author-email: test@test.com
9
- License: MIT
10
- Project-URL: Source, https://github.com/source
11
- Keywords: python3 python reserve reserver reserved
12
- Classifier: Development Status :: 1 - Planning
13
- Classifier: Programming Language :: Python :: 3.6
14
- Classifier: Programming Language :: Python :: 3.7
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Requires-Python: >=3.6
21
- Description-Content-Type: text/markdown
22
-
23
- This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -1,5 +0,0 @@
1
- ipspot/__init__.py,sha256=8FV5c2U1i76kXBNT6Wa-BprTZ8gEpqGmceJzD0DSOaQ,46
2
- ipspot-0.0.0.dist-info/METADATA,sha256=BPZlOQU_qWzl09eMkOUCMRMMygI7YkKhSbXJjqpa6Vo,905
3
- ipspot-0.0.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
4
- ipspot-0.0.0.dist-info/top_level.txt,sha256=v0WgE1z2iCy_bXU53fVcllwHLTvGNBIvq8u3KPC2_Sc,7
5
- ipspot-0.0.0.dist-info/RECORD,,