oafuncs 0.0.97.5__py3-none-any.whl → 0.0.97.7__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 +2 -13
- oafuncs/oa_date.py +90 -0
- oafuncs/oa_draw.py +32 -7
- oafuncs/oa_file.py +52 -2
- oafuncs/oa_nc.py +32 -27
- oafuncs/oa_tool/__init__.py +1 -13
- {oafuncs-0.0.97.5.dist-info → oafuncs-0.0.97.7.dist-info}/METADATA +2 -1
- {oafuncs-0.0.97.5.dist-info → oafuncs-0.0.97.7.dist-info}/RECORD +11 -12
- {oafuncs-0.0.97.5.dist-info → oafuncs-0.0.97.7.dist-info}/WHEEL +1 -1
- oafuncs/oa_down/hycom_3hourly_20250129.py +0 -1307
- oafuncs/oa_tool/time.py +0 -22
- {oafuncs-0.0.97.5.dist-info → oafuncs-0.0.97.7.dist-info}/licenses/LICENSE.txt +0 -0
- {oafuncs-0.0.97.5.dist-info → oafuncs-0.0.97.7.dist-info}/top_level.txt +0 -0
oafuncs/oa_tool/time.py
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
# coding=utf-8
|
3
|
-
"""
|
4
|
-
Author: Liu Kun && 16031215@qq.com
|
5
|
-
Date: 2025-03-09 13:55:46
|
6
|
-
LastEditors: Liu Kun && 16031215@qq.com
|
7
|
-
LastEditTime: 2025-03-09 13:55:46
|
8
|
-
FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_tool\\time.py
|
9
|
-
Description:
|
10
|
-
EditPlatform: vscode
|
11
|
-
ComputerInfo: XPS 15 9510
|
12
|
-
SystemInfo: Windows 11
|
13
|
-
Python Version: 3.12
|
14
|
-
"""
|
15
|
-
|
16
|
-
|
17
|
-
import calendar
|
18
|
-
|
19
|
-
__all__ = ["get_days"]
|
20
|
-
|
21
|
-
def get_days(year, month):
|
22
|
-
return calendar.monthrange(year, month)[1]
|
File without changes
|
File without changes
|