cdasws 1.8.8__tar.gz → 1.8.9__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.
- {cdasws-1.8.8 → cdasws-1.8.9}/PKG-INFO +3 -2
- {cdasws-1.8.8 → cdasws-1.8.9}/README.md +2 -1
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws/__init__.py +1 -1
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws.egg-info/PKG-INFO +3 -2
- {cdasws-1.8.8 → cdasws-1.8.9}/setup.py +1 -1
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws/__main__.py +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws/datarepresentation.py +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws/datarequest.py +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws/timeinterval.py +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws.egg-info/SOURCES.txt +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws.egg-info/dependency_links.txt +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws.egg-info/requires.txt +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/cdasws.egg-info/top_level.txt +0 -0
- {cdasws-1.8.8 → cdasws-1.8.9}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdasws
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.9
|
|
4
4
|
Summary: NASA's Coordinated Data Analysis System Web Service Client Library
|
|
5
5
|
Home-page: https://cdaweb.gsfc.nasa.gov/WebServices/REST
|
|
6
6
|
Author: Bernie Harris
|
|
@@ -14,7 +14,8 @@ Description:
|
|
|
14
14
|
NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
|
|
15
15
|
(CDAS). This library implements the client side of the
|
|
16
16
|
[CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
|
|
17
|
-
and can return data
|
|
17
|
+
and can return data from any of
|
|
18
|
+
[these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
|
|
18
19
|
[SpacePy datamodel](https://spacepy.github.io/datamodel.html),
|
|
19
20
|
[xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
|
|
20
21
|
[pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
|
|
@@ -6,7 +6,8 @@ and services of
|
|
|
6
6
|
NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
|
|
7
7
|
(CDAS). This library implements the client side of the
|
|
8
8
|
[CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
|
|
9
|
-
and can return data
|
|
9
|
+
and can return data from any of
|
|
10
|
+
[these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
|
|
10
11
|
[SpacePy datamodel](https://spacepy.github.io/datamodel.html),
|
|
11
12
|
[xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
|
|
12
13
|
[pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdasws
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.9
|
|
4
4
|
Summary: NASA's Coordinated Data Analysis System Web Service Client Library
|
|
5
5
|
Home-page: https://cdaweb.gsfc.nasa.gov/WebServices/REST
|
|
6
6
|
Author: Bernie Harris
|
|
@@ -14,7 +14,8 @@ Description:
|
|
|
14
14
|
NASA's [Coordinated Data Analysis System](https://cdaweb.gsfc.nasa.gov/)
|
|
15
15
|
(CDAS). This library implements the client side of the
|
|
16
16
|
[CDAS RESTful web services](https://cdaweb.gsfc.nasa.gov/WebServices/REST/)
|
|
17
|
-
and can return data
|
|
17
|
+
and can return data from any of
|
|
18
|
+
[these datasets](https://cdaweb.gsfc.nasa.gov/misc/Notes.html) in a
|
|
18
19
|
[SpacePy datamodel](https://spacepy.github.io/datamodel.html),
|
|
19
20
|
[xarray.Dataset](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.html), or
|
|
20
21
|
[pandas.DataFrame](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html)
|
|
@@ -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="cdasws",
|
|
13
|
-
version="1.8.
|
|
13
|
+
version="1.8.9",
|
|
14
14
|
description="NASA's Coordinated Data Analysis System Web Service Client Library",
|
|
15
15
|
long_description=README,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
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
|