spherapy 0.2.0__py3-none-any.whl → 0.2.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.
- spherapy/_version.py +2 -2
- spherapy/updater.py +1 -2
- spherapy/util/celestrak.py +1 -1
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/METADATA +1 -1
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/RECORD +9 -9
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/WHEEL +0 -0
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/entry_points.txt +0 -0
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/licenses/LICENSE.md +0 -0
- {spherapy-0.2.0.dist-info → spherapy-0.2.1.dist-info}/top_level.txt +0 -0
spherapy/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 2,
|
|
31
|
+
__version__ = version = '0.2.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 2, 1)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
spherapy/updater.py
CHANGED
|
@@ -3,8 +3,7 @@ import datetime as dt
|
|
|
3
3
|
import pathlib
|
|
4
4
|
|
|
5
5
|
import spherapy
|
|
6
|
-
from spherapy.util import epoch_u, spacetrack
|
|
7
|
-
import spherapy.util.spacetrack as celestrak
|
|
6
|
+
from spherapy.util import celestrak, epoch_u, spacetrack
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
def updateTLEs(sat_id_list: list[int]) -> list[int]:
|
spherapy/util/celestrak.py
CHANGED
|
@@ -43,7 +43,7 @@ def updateTLEs(sat_id_list:list[int]) -> list[int]:
|
|
|
43
43
|
while retry_num < MAX_RETRIES:
|
|
44
44
|
retry_num += 1
|
|
45
45
|
r = requests.get(url, timeout=TIMEOUT)
|
|
46
|
-
if r.status_code == requests.codes.
|
|
46
|
+
if r.status_code == requests.codes.ok:
|
|
47
47
|
fetch_successful = True
|
|
48
48
|
tle_file = getTLEFilePath(sat_id)
|
|
49
49
|
dat_list = r.text.split('\r\n')
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
spherapy/__init__.py,sha256=v1n13-2Uuy8GEWkB_B5mu2tSkAOVEPVP2eF0GixSPtI,2865
|
|
2
2
|
spherapy/__main__.py,sha256=YOcE__6OgX-e7lJ6UpeGS8Iw5igG0jEraTq8KOqGuDA,374
|
|
3
|
-
spherapy/_version.py,sha256=
|
|
3
|
+
spherapy/_version.py,sha256=vYqoJTG51NOUmYyL0xt8asRK8vUT4lGAdal_EZ59mvw,704
|
|
4
4
|
spherapy/orbit.py,sha256=MyRa1U5cEdzP1yhFLbp25T1kHqTpZVnj75Siwfe6vbo,32607
|
|
5
5
|
spherapy/timespan.py,sha256=xc5JEYtDcG4zZdsbdW9lcIX_PXzXzNJ-xGD_bCWJFDs,14438
|
|
6
|
-
spherapy/updater.py,sha256=
|
|
6
|
+
spherapy/updater.py,sha256=pkZg3ZlFbCa2iDJ2CP9al8t0BoDGRnppte54Vqkw1M4,3215
|
|
7
7
|
spherapy/data/TLEs/25544.tle,sha256=D-kndlhtWawbxR8tCU-7QZB1VZxROzutUBgc1ZwO4C0,7873403
|
|
8
8
|
spherapy/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
spherapy/util/celestrak.py,sha256=
|
|
9
|
+
spherapy/util/celestrak.py,sha256=9uFtau90NOpXGc-Vkww4uKiFcrEnriXQjb-hfO50kaE,2268
|
|
10
10
|
spherapy/util/constants.py,sha256=sm53FCsupvkUC3eajfn-haFIqnonJHykOL3klWTikaA,1810
|
|
11
11
|
spherapy/util/credentials.py,sha256=NS5eIdjEOumzZ8BqzRZ9mWp8BhRdfGWbY6qQkMjzS90,4057
|
|
12
12
|
spherapy/util/elements_u.py,sha256=ycHTu0-p6ZNI8WHpNPanGf0a-WOLY7PaWphyG_AEJ28,2058
|
|
@@ -14,9 +14,9 @@ spherapy/util/epoch_u.py,sha256=IgSBumtS28JajLLkMLq-ST-qypoicqMdybXoAPTsjmo,3880
|
|
|
14
14
|
spherapy/util/exceptions.py,sha256=rDqYIhNdKnYBkbkxdhndSYI4mq4ENKtW01jEfZ7Yykk,215
|
|
15
15
|
spherapy/util/orbital_u.py,sha256=GKTNpiMTB7NAX-0TtD3lcHz5rFY2P_91odUnEBX-CJA,1760
|
|
16
16
|
spherapy/util/spacetrack.py,sha256=Kbh8IVgFN1UMegWxI1thxHx2gY5fEJ6ofT692-JmKA8,8165
|
|
17
|
-
spherapy-0.2.
|
|
18
|
-
spherapy-0.2.
|
|
19
|
-
spherapy-0.2.
|
|
20
|
-
spherapy-0.2.
|
|
21
|
-
spherapy-0.2.
|
|
22
|
-
spherapy-0.2.
|
|
17
|
+
spherapy-0.2.1.dist-info/licenses/LICENSE.md,sha256=9a5OXeKpk6GnCRhlQAPa5JQjl3PaFqseA1p2_DhXEbA,1055
|
|
18
|
+
spherapy-0.2.1.dist-info/METADATA,sha256=UiluR8rndZ4AuF8R_J3c7aJRyZC4lr9HgTgx_geORfQ,7756
|
|
19
|
+
spherapy-0.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
20
|
+
spherapy-0.2.1.dist-info/entry_points.txt,sha256=WpE3jlS6iiug9ZqUrAHQuLEhbDTpbnAtBz8b0yXJJOU,150
|
|
21
|
+
spherapy-0.2.1.dist-info/top_level.txt,sha256=X4rv7pGR9bAfVWOokUyHeDb6Z0jfIQCN6zDfh5f2NK4,9
|
|
22
|
+
spherapy-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|