oafuncs 0.0.71__py2.py3-none-any.whl → 0.0.73__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/oa_down/hycom_3hourly.py +29 -2
- {oafuncs-0.0.71.dist-info → oafuncs-0.0.73.dist-info}/METADATA +1 -1
- {oafuncs-0.0.71.dist-info → oafuncs-0.0.73.dist-info}/RECORD +6 -6
- {oafuncs-0.0.71.dist-info → oafuncs-0.0.73.dist-info}/LICENSE.txt +0 -0
- {oafuncs-0.0.71.dist-info → oafuncs-0.0.73.dist-info}/WHEEL +0 -0
- {oafuncs-0.0.71.dist-info → oafuncs-0.0.73.dist-info}/top_level.txt +0 -0
oafuncs/oa_down/hycom_3hourly.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
Author: Liu Kun && 16031215@qq.com
|
5
5
|
Date: 2024-11-01 10:31:09
|
6
6
|
LastEditors: Liu Kun && 16031215@qq.com
|
7
|
-
LastEditTime: 2024-12-01 11:
|
7
|
+
LastEditTime: 2024-12-01 11:48:43
|
8
8
|
FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_down\\hycom_3hourly.py
|
9
9
|
Description:
|
10
10
|
EditPlatform: vscode
|
@@ -602,6 +602,33 @@ def dlownload_file(target_url, store_path, file_name, check=False):
|
|
602
602
|
request_times = 0
|
603
603
|
filename = Path(store_path) / file_name
|
604
604
|
|
605
|
+
def calculate_wait_time(time_str):
|
606
|
+
import re
|
607
|
+
|
608
|
+
# 定义正则表达式,匹配YYYYMMDDHH格式的时间
|
609
|
+
time_pattern = r'\d{10}'
|
610
|
+
|
611
|
+
# 定义两个字符串
|
612
|
+
# str1 = 'HYCOM_water_u_2018010100_2018010112.nc'
|
613
|
+
# str2 = 'HYCOM_water_u_2018010100.nc'
|
614
|
+
|
615
|
+
# 使用正则表达式查找时间
|
616
|
+
times_in_str = re.findall(time_pattern, time_str)
|
617
|
+
|
618
|
+
# 计算每个字符串中的时间数量
|
619
|
+
num_times_str = len(times_in_str)
|
620
|
+
|
621
|
+
if num_times_str > 1:
|
622
|
+
delta_t = datetime.datetime.strptime(times_in_str[1], '%Y%m%d%H') - datetime.datetime.strptime(times_in_str[0], '%Y%m%d%H')
|
623
|
+
delta_t = delta_t.total_seconds() / 3600
|
624
|
+
delta_t = delta_t / 3 + 1
|
625
|
+
else:
|
626
|
+
delta_t = 1
|
627
|
+
|
628
|
+
return int(delta_t*15)
|
629
|
+
|
630
|
+
max_timeout = calculate_wait_time(file_name)
|
631
|
+
|
605
632
|
if check:
|
606
633
|
if check_existing_file(filename):
|
607
634
|
return
|
@@ -620,7 +647,7 @@ def dlownload_file(target_url, store_path, file_name, check=False):
|
|
620
647
|
# 尝试下载文件
|
621
648
|
try:
|
622
649
|
headers = {'User-Agent': get_ua()}
|
623
|
-
response = s.get(target_url, headers=headers, timeout=random.randint(5,
|
650
|
+
response = s.get(target_url, headers=headers, timeout=random.randint(5, max_timeout))
|
624
651
|
response.raise_for_status() # 如果请求返回的不是200,将抛出HTTPError异常
|
625
652
|
|
626
653
|
# 保存文件
|
@@ -7,7 +7,7 @@ oafuncs/oa_help.py,sha256=ppNktmtNzs15R20MD1bM7yImlTQ_ngMwvoIglePOKXA,1000
|
|
7
7
|
oafuncs/oa_nc.py,sha256=ALAYfqDy5lbUNJsTU29j6ZWkM4wgqQU3p2Fxn5pkvsQ,12102
|
8
8
|
oafuncs/oa_python.py,sha256=XPTP3o7zTFzfJR_YhsKfQksa3bSYwXsne9YxlJplCEA,3994
|
9
9
|
oafuncs/oa_down/__init__.py,sha256=a6rgxHQi8spvlI-TaVEqnrDNhYsKm5_IQf7ckAZ8U4w,603
|
10
|
-
oafuncs/oa_down/hycom_3hourly.py,sha256=
|
10
|
+
oafuncs/oa_down/hycom_3hourly.py,sha256=3acDSQqkqBlqFNZgoX_EDCIAw2C7YbZMTbrjz37n2x0,57430
|
11
11
|
oafuncs/oa_down/literature.py,sha256=dT3-7-beEzQ9mTP8LNV9Gf3q5Z1Pqqjc6FOS010HZeQ,17833
|
12
12
|
oafuncs/oa_down/refs_pdf.py,sha256=lgGKO2gQ0hRjuaBYOLeBgksJB_KXYpFcXMDwMQeYVkI,18719
|
13
13
|
oafuncs/oa_sign/__init__.py,sha256=QKqTFrJDFK40C5uvk48GlRRbGFzO40rgkYwu6dYxatM,563
|
@@ -16,8 +16,8 @@ oafuncs/oa_sign/ocean.py,sha256=xrW-rWD7xBWsB5PuCyEwQ1Q_RDKq2KCLz-LOONHgldU,5932
|
|
16
16
|
oafuncs/oa_sign/scientific.py,sha256=a4JxOBgm9vzNZKpJ_GQIQf7cokkraV5nh23HGbmTYKw,5064
|
17
17
|
oafuncs/oa_tool/__init__.py,sha256=IKOlqpWlb4cMDCtq2VKR_RTxQHDNqR_vfqqsOsp_lKQ,466
|
18
18
|
oafuncs/oa_tool/email.py,sha256=4lJxV_KUzhxgLYfVwYTqp0qxRugD7fvsZkXDe5WkUKo,3052
|
19
|
-
oafuncs-0.0.
|
20
|
-
oafuncs-0.0.
|
21
|
-
oafuncs-0.0.
|
22
|
-
oafuncs-0.0.
|
23
|
-
oafuncs-0.0.
|
19
|
+
oafuncs-0.0.73.dist-info/LICENSE.txt,sha256=rMtLpVg8sKiSlwClfR9w_Dd_5WubTQgoOzE2PDFxzs4,1074
|
20
|
+
oafuncs-0.0.73.dist-info/METADATA,sha256=efEukumJFlRiwKg4419DQNU1ghKEktG-yRyqPiONlyA,22531
|
21
|
+
oafuncs-0.0.73.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
|
22
|
+
oafuncs-0.0.73.dist-info/top_level.txt,sha256=bgC35QkXbN4EmPHEveg_xGIZ5i9NNPYWqtJqaKqTPsQ,8
|
23
|
+
oafuncs-0.0.73.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|