hdpws 0.6.26__tar.gz → 0.6.27__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.
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hdpws
3
- Version: 0.6.26
3
+ Version: 0.6.27
4
4
  Summary: NASA's Heliophysics Data Portal Web Service Client Library
5
5
  Home-page: https://heliophysicsdata.gsfc.nasa.gov/WebServices
6
6
  Author: Bernie Harris
7
7
  Author-email: NASA-SPDF-Support@nasa.onmicrosoft.com
8
8
  License: NOSA
9
- Keywords: heliophysics,spase,space physics,spdf,hdp
10
- Classifier: Development Status :: 3 - Alpha
9
+ Keywords: heliophysics,SPASE,space physics,SPDF,HDP,HDRL
10
+ Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Environment :: Console
12
12
  Classifier: Environment :: Web Environment
13
13
  Classifier: Intended Audience :: End Users/Desktop
@@ -17,6 +17,7 @@ Classifier: Operating System :: MacOS :: MacOS X
17
17
  Classifier: Operating System :: Microsoft :: Windows
18
18
  Classifier: Operating System :: POSIX
19
19
  Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
20
21
  Classifier: Topic :: Scientific/Engineering :: Physics
21
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
23
  Description-Content-Type: text/markdown
@@ -24,7 +24,7 @@
24
24
  #
25
25
  # NOSA HEADER END
26
26
  #
27
- # Copyright (c) 2023-2025 United States Government as represented by
27
+ # Copyright (c) 2023-2026 United States Government as represented by
28
28
  # the National Aeronautics and Space Administration. No copyright is
29
29
  # claimed in the United States under Title 17, U.S.Code. All Other
30
30
  # Rights Reserved.
@@ -34,14 +34,14 @@
34
34
  Package for accessing the NASA's Heliophysics Data Portal (HDP) web
35
35
  services https://heliophysicsdata.gsfc.nasa.gov/WebServices/.
36
36
 
37
- Copyright © 2023-2025 United States Government as represented by the
37
+ Copyright © 2023-2026 United States Government as represented by the
38
38
  National Aeronautics and Space Administration. No copyright is claimed in
39
39
  the United States under Title 17, U.S.Code. All Other Rights Reserved.
40
40
 
41
41
  """
42
42
 
43
43
 
44
- __version__ = "0.6.26"
44
+ __version__ = "0.6.27"
45
45
 
46
46
 
47
47
  #
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hdpws
3
- Version: 0.6.26
3
+ Version: 0.6.27
4
4
  Summary: NASA's Heliophysics Data Portal Web Service Client Library
5
5
  Home-page: https://heliophysicsdata.gsfc.nasa.gov/WebServices
6
6
  Author: Bernie Harris
7
7
  Author-email: NASA-SPDF-Support@nasa.onmicrosoft.com
8
8
  License: NOSA
9
- Keywords: heliophysics,spase,space physics,spdf,hdp
10
- Classifier: Development Status :: 3 - Alpha
9
+ Keywords: heliophysics,SPASE,space physics,SPDF,HDP,HDRL
10
+ Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Environment :: Console
12
12
  Classifier: Environment :: Web Environment
13
13
  Classifier: Intended Audience :: End Users/Desktop
@@ -17,6 +17,7 @@ Classifier: Operating System :: MacOS :: MacOS X
17
17
  Classifier: Operating System :: Microsoft :: Windows
18
18
  Classifier: Operating System :: POSIX
19
19
  Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
20
21
  Classifier: Topic :: Scientific/Engineering :: Physics
21
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
23
  Description-Content-Type: text/markdown
@@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
10
10
  # This call to setup() does all the work
11
11
  setup(
12
12
  name="hdpws",
13
- version="0.6.26",
13
+ version="0.6.27",
14
14
  description="NASA's Heliophysics Data Portal Web Service Client Library",
15
15
  long_description=README,
16
16
  long_description_content_type="text/markdown",
@@ -26,9 +26,9 @@ setup(
26
26
  # extras_require={
27
27
  # 'plot': ["matplotlib>=3.3.2"],
28
28
  # },
29
- keywords=["heliophysics", "spase", "space physics", "spdf", "hdp"],
29
+ keywords=["heliophysics", "SPASE", "space physics", "SPDF", "HDP", "HDRL"],
30
30
  classifiers=[
31
- "Development Status :: 3 - Alpha",
31
+ "Development Status :: 4 - Beta",
32
32
  "Environment :: Console",
33
33
  "Environment :: Web Environment",
34
34
  "Intended Audience :: End Users/Desktop",
@@ -39,6 +39,7 @@ setup(
39
39
  "Operating System :: Microsoft :: Windows",
40
40
  "Operating System :: POSIX",
41
41
  "Programming Language :: Python",
42
+ "Programming Language :: Python :: 3",
42
43
  "Topic :: Scientific/Engineering :: Physics",
43
44
  "Topic :: Software Development :: Libraries :: Python Modules"
44
45
  ],
@@ -440,9 +440,10 @@ class TestHdpWs(unittest.TestCase):
440
440
  result_id_elements = result.findall('.//ResourceID',
441
441
  namespaces=NS)
442
442
  result_ids = list(map(lambda e: e.text, result_id_elements))
443
- self.assertTrue(len(result_ids) == 1)
443
+ #print(result_ids)
444
+ self.assertTrue(len(result_ids) == 7)
444
445
  #self.assertTrue(result_ids[0] == 'spase://NASA/Catalog/CME-ICME_Cho2003')
445
- self.assertTrue(result_ids[0] == 'spase://NASA/Catalog/ISTP/SWCAT')
446
+ self.assertTrue(result_ids[1] == 'spase://NASA/Catalog/ISTP/SWCAT')
446
447
 
447
448
 
448
449
  def test_get_spase_catalog_prior_id(self):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes