oafuncs 0.0.78__py2.py3-none-any.whl → 0.0.80__py2.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.
- oafuncs/__init__.py +15 -12
- oafuncs/oa_down/User_Agent-list.txt +13 -2837
- oafuncs/oa_down/hycom_3hourly.py +184 -63
- oafuncs/oa_down/test.py +52 -28
- oafuncs/oa_down/test_ua.py +151 -0
- oafuncs/oa_draw.py +45 -1
- oafuncs/oa_s/__init__.py +23 -0
- oafuncs/oa_s/oa_cmap.py +163 -0
- oafuncs/oa_s/oa_data.py +187 -0
- oafuncs/oa_s/oa_draw.py +451 -0
- oafuncs/oa_s/oa_file.py +332 -0
- oafuncs/oa_s/oa_help.py +39 -0
- oafuncs/oa_s/oa_nc.py +410 -0
- oafuncs/oa_s/oa_python.py +107 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/__init__.py" +26 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_cmap.py" +163 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_data.py" +187 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/__init__.py" +20 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/hycom_3hourly.py" +1176 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/literature.py" +332 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/test_ua.py" +151 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_draw.py" +451 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_file.py" +332 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_help.py" +39 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_nc.py" +410 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_python.py" +107 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/__init__.py" +21 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/meteorological.py" +168 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/ocean.py" +158 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/scientific.py" +139 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/__init__.py" +18 -0
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/email.py" +114 -0
- {oafuncs-0.0.78.dist-info → oafuncs-0.0.80.dist-info}/METADATA +1 -1
- oafuncs-0.0.80.dist-info/RECORD +51 -0
- oafuncs-0.0.80.dist-info/top_level.txt +2 -0
- oafuncs-0.0.78.dist-info/RECORD +0 -24
- oafuncs-0.0.78.dist-info/top_level.txt +0 -1
- {oafuncs-0.0.78.dist-info → oafuncs-0.0.80.dist-info}/LICENSE.txt +0 -0
- {oafuncs-0.0.78.dist-info → oafuncs-0.0.80.dist-info}/WHEEL +0 -0
oafuncs/__init__.py
CHANGED
@@ -1,26 +1,29 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# coding=utf-8
|
3
|
-
|
3
|
+
"""
|
4
4
|
Author: Liu Kun && 16031215@qq.com
|
5
5
|
Date: 2024-09-17 16:09:20
|
6
6
|
LastEditors: Liu Kun && 16031215@qq.com
|
7
|
-
LastEditTime: 2024-
|
8
|
-
FilePath: \\Python\\My_Funcs\\OAFuncs\\
|
9
|
-
Description:
|
7
|
+
LastEditTime: 2024-12-13 10:56:43
|
8
|
+
FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\__init__.py
|
9
|
+
Description:
|
10
10
|
EditPlatform: vscode
|
11
11
|
ComputerInfo: XPS 15 9510
|
12
12
|
SystemInfo: Windows 11
|
13
13
|
Python Version: 3.11
|
14
|
-
|
14
|
+
"""
|
15
15
|
|
16
16
|
# 会导致OAFuncs直接导入所有函数,不符合模块化设计
|
17
|
-
from .
|
18
|
-
|
17
|
+
from oafuncs.oa_s import (
|
18
|
+
oa_cmap,
|
19
|
+
oa_data,
|
20
|
+
oa_draw,
|
21
|
+
oa_file,
|
22
|
+
oa_help,
|
23
|
+
oa_nc,
|
24
|
+
oa_python,
|
25
|
+
)
|
26
|
+
|
19
27
|
from .oa_down import *
|
20
|
-
from .oa_draw import *
|
21
|
-
from .oa_file import *
|
22
|
-
from .oa_help import *
|
23
|
-
from .oa_nc import *
|
24
|
-
from .oa_python import *
|
25
28
|
from .oa_sign import *
|
26
29
|
from .oa_tool import *
|