cdasws 1.8.11__py3-none-any.whl → 1.8.12__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.
- cdasws/__init__.py +5 -2310
- cdasws/__main__.py +1 -1
- cdasws/cdasws.py +1833 -320
- {cdasws-1.8.11.dist-info → cdasws-1.8.12.dist-info}/METADATA +3 -1
- cdasws-1.8.12.dist-info/RECORD +13 -0
- {cdasws-1.8.11.dist-info → cdasws-1.8.12.dist-info}/licenses/LICENSE +1 -1
- cdasws-1.8.11.dist-info/RECORD +0 -13
- {cdasws-1.8.11.dist-info → cdasws-1.8.12.dist-info}/WHEEL +0 -0
- {cdasws-1.8.11.dist-info → cdasws-1.8.12.dist-info}/top_level.txt +0 -0
cdasws/__main__.py
CHANGED
|
@@ -48,7 +48,7 @@ import logging.config
|
|
|
48
48
|
from typing import List
|
|
49
49
|
import urllib3
|
|
50
50
|
#import matplotlib.pyplot as plt
|
|
51
|
-
from cdasws import CdasWs
|
|
51
|
+
from cdasws.cdasws import CdasWs
|
|
52
52
|
from cdasws.timeinterval import TimeInterval
|
|
53
53
|
from cdasws.datarequest import GraphOptions, ImageFormat, Overplot, TextFormat
|
|
54
54
|
from cdasws.datarepresentation import DataRepresentation
|