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.
Files changed (39) hide show
  1. oafuncs/__init__.py +15 -12
  2. oafuncs/oa_down/User_Agent-list.txt +13 -2837
  3. oafuncs/oa_down/hycom_3hourly.py +184 -63
  4. oafuncs/oa_down/test.py +52 -28
  5. oafuncs/oa_down/test_ua.py +151 -0
  6. oafuncs/oa_draw.py +45 -1
  7. oafuncs/oa_s/__init__.py +23 -0
  8. oafuncs/oa_s/oa_cmap.py +163 -0
  9. oafuncs/oa_s/oa_data.py +187 -0
  10. oafuncs/oa_s/oa_draw.py +451 -0
  11. oafuncs/oa_s/oa_file.py +332 -0
  12. oafuncs/oa_s/oa_help.py +39 -0
  13. oafuncs/oa_s/oa_nc.py +410 -0
  14. oafuncs/oa_s/oa_python.py +107 -0
  15. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/__init__.py" +26 -0
  16. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_cmap.py" +163 -0
  17. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_data.py" +187 -0
  18. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/__init__.py" +20 -0
  19. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/hycom_3hourly.py" +1176 -0
  20. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/literature.py" +332 -0
  21. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/test_ua.py" +151 -0
  22. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_draw.py" +451 -0
  23. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_file.py" +332 -0
  24. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_help.py" +39 -0
  25. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_nc.py" +410 -0
  26. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_python.py" +107 -0
  27. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/__init__.py" +21 -0
  28. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/meteorological.py" +168 -0
  29. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/ocean.py" +158 -0
  30. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/scientific.py" +139 -0
  31. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/__init__.py" +18 -0
  32. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/email.py" +114 -0
  33. {oafuncs-0.0.78.dist-info → oafuncs-0.0.80.dist-info}/METADATA +1 -1
  34. oafuncs-0.0.80.dist-info/RECORD +51 -0
  35. oafuncs-0.0.80.dist-info/top_level.txt +2 -0
  36. oafuncs-0.0.78.dist-info/RECORD +0 -24
  37. oafuncs-0.0.78.dist-info/top_level.txt +0 -1
  38. {oafuncs-0.0.78.dist-info → oafuncs-0.0.80.dist-info}/LICENSE.txt +0 -0
  39. {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-10-14 17:08:57
8
- FilePath: \\Python\\My_Funcs\\OAFuncs\\OAFuncs\\__init__.py
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 .oa_cmap import *
18
- from .oa_data import *
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 *