oafuncs 0.0.65__py2.py3-none-any.whl → 0.0.66__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.
@@ -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-11-29 20:40:26
7
+ LastEditTime: 2024-11-30 11:40:53
8
8
  FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_down\\hycom_3hourly.py
9
9
  Description:
10
10
  EditPlatform: vscode
@@ -52,7 +52,7 @@ data_info['hourly']['dataset']['GLBy0.08']['version'] = {'93.0': {}}
52
52
  # 在网页上提交超过范围的时间,会返回该数据集实际时间范围,从而纠正下面的时间范围
53
53
  # 目前只纠正了GLBv0.08 93.0的时间范围,具体到小时了
54
54
  # 其他数据集的时刻暂时默认为00起,21止
55
- data_info['hourly']['dataset']['GLBv0.08']['version']['53.X']['time_range'] = {'time_start': '19940101', 'time_end': '20151230'}
55
+ data_info['hourly']['dataset']['GLBv0.08']['version']['53.X']['time_range'] = {'time_start': '19940101', 'time_end': '20151231'}
56
56
  data_info['hourly']['dataset']['GLBv0.08']['version']['56.3']['time_range'] = {'time_start': '20140701', 'time_end': '20160430'}
57
57
  data_info['hourly']['dataset']['GLBv0.08']['version']['57.2']['time_range'] = {'time_start': '20160501', 'time_end': '20170131'}
58
58
  data_info['hourly']['dataset']['GLBv0.08']['version']['92.8']['time_range'] = {'time_start': '20170201', 'time_end': '20170531'}
@@ -412,8 +412,11 @@ def ymdh_in_which_dataset_and_version(time_ymdh):
412
412
  if have_data:
413
413
  for d, v, trange in zip(d_list, v_list, trange_list):
414
414
  print(f'[bold blue]{d} {v} {trange}')
415
+ return True
415
416
  else:
416
- raise ValueError(f'[bold red]{time_ymdh} is not in any dataset and version')
417
+ # raise ValueError(f'{time_ymdh} is not in any dataset and version')
418
+ print(f'[bold red]{time_ymdh} is not in any dataset and version')
419
+ return False
417
420
 
418
421
 
419
422
  def ymd_in_which_dataset_and_version(time_ymd):
@@ -439,8 +442,11 @@ def ymd_in_which_dataset_and_version(time_ymd):
439
442
  if have_data:
440
443
  for d, v, trange in zip(d_list, v_list, trange_list):
441
444
  print(f'[bold blue]{d} {v} {trange}')
445
+ return True
442
446
  else:
443
- raise ValueError(f'[bold red]{time_ymd} is not in any dataset and version')
447
+ # raise ValueError(f'[bold red]{time_ymd} is not in any dataset and version')
448
+ print(f'[bold red]{time_ymd} is not in any dataset and version')
449
+ return False
444
450
 
445
451
 
446
452
  def direct_choose_dataset_and_version(time_ymdh):
@@ -456,6 +462,7 @@ def direct_choose_dataset_and_version(time_ymdh):
456
462
  if time_ymdh >= int(time_s) and time_ymdh <= int(time_e):
457
463
  print(f'[bold purple]dataset: {dataset_name}, version: {version_name} is chosen')
458
464
  return dataset_name, version_name
465
+ return None, None
459
466
 
460
467
 
461
468
  def direct_choose_dataset_and_version_whole_day(time_ymd):
@@ -673,20 +680,20 @@ def check_dataset_version_single_time(dataset_name, version_name, download_time)
673
680
  if not check_hour_is_valid(download_time):
674
681
  print('Please ensure the hour is 00, 03, 06, 09, 12, 15, 18, 21')
675
682
  raise ValueError('The hour is invalid')
683
+ have_data = ymdh_in_which_dataset_and_version(download_time)
684
+ if not have_data:
685
+ return None, None
676
686
  if dataset_name is None and version_name is None:
677
687
  print('The dataset_name and version_name are None, so the dataset and version will be chosen according to the download_time.\nIf there is more than one dataset and version in the time range, the first one will be chosen.')
678
688
  print('If you wanna choose the dataset and version by yourself, please set the dataset_name and version_name together.')
679
- ymdh_in_which_dataset_and_version(download_time)
680
689
  dataset_name, version_name = direct_choose_dataset_and_version(download_time)
681
690
  elif dataset_name is None and version_name is not None:
682
691
  print('Please ensure the dataset_name is not None')
683
692
  print('If you do not add the dataset_name, both the dataset and version will be chosen according to the download_time.')
684
- ymdh_in_which_dataset_and_version(download_time)
685
693
  dataset_name, version_name = direct_choose_dataset_and_version(download_time)
686
694
  elif dataset_name is not None and version_name is None:
687
695
  print('Please ensure the version_name is not None')
688
696
  print('If you do not add the version_name, both the dataset and version will be chosen according to the download_time.')
689
- ymdh_in_which_dataset_and_version(download_time)
690
697
  dataset_name, version_name = direct_choose_dataset_and_version(download_time)
691
698
  else:
692
699
  print('The dataset_name and version_name are both set by yourself.')
@@ -715,6 +722,8 @@ def get_submit_url_var(var, depth, level_num, lon_min, lon_max, lat_min, lat_max
715
722
  def direct_download_single_time(var, lon_min=0, lon_max=359.92, lat_min=-80, lat_max=90, download_time='2024083100', depth=None, level_num=None, store_path=None, dataset_name=None, version_name=None, check=False):
716
723
  download_time = str(download_time)
717
724
  dataset_name, version_name = check_dataset_version_single_time(dataset_name, version_name, download_time)
725
+ if dataset_name is None and version_name is None:
726
+ return
718
727
 
719
728
  if store_path is None:
720
729
  store_path = str(Path.cwd())
@@ -756,20 +765,20 @@ def direct_download_single_time(var, lon_min=0, lon_max=359.92, lat_min=-80, lat
756
765
 
757
766
  def check_dataset_version_whold_day(dataset_name, version_name, download_time):
758
767
  download_time = str(download_time)
768
+ have_data = ymd_in_which_dataset_and_version(download_time)
769
+ if not have_data:
770
+ return None, None
759
771
  if dataset_name is None and version_name is None:
760
772
  print('The dataset_name and version_name are None, so the dataset and version will be chosen according to the download_time.\nIf there is more than one dataset and version in the time range, the first one will be chosen.')
761
773
  print('If you wanna choose the dataset and version by yourself, please set the dataset_name and version_name together.')
762
- ymd_in_which_dataset_and_version(download_time)
763
774
  dataset_name, version_name = direct_choose_dataset_and_version_whole_day(download_time)
764
775
  elif dataset_name is None and version_name is not None:
765
776
  print('Please ensure the dataset_name is not None')
766
777
  print('If you do not add the dataset_name, both the dataset and version will be chosen according to the download_time.')
767
- ymd_in_which_dataset_and_version(download_time)
768
778
  dataset_name, version_name = direct_choose_dataset_and_version_whole_day(download_time)
769
779
  elif dataset_name is not None and version_name is None:
770
780
  print('Please ensure the version_name is not None')
771
781
  print('If you do not add the version_name, both the dataset and version will be chosen according to the download_time.')
772
- ymd_in_which_dataset_and_version(download_time)
773
782
  dataset_name, version_name = direct_choose_dataset_and_version_whole_day(download_time)
774
783
  else:
775
784
  print('The dataset_name and version_name are both set by yourself.')
@@ -780,6 +789,8 @@ def check_dataset_version_whold_day(dataset_name, version_name, download_time):
780
789
  def direct_download_whole_day(var, lon_min=0, lon_max=359.92, lat_min=-80, lat_max=90, download_time='20240831', depth=None, level_num=None, store_path=None, dataset_name=None, version_name=None, check=False):
781
790
  download_time = str(download_time)[:8]+'00'
782
791
  dataset_name, version_name = check_dataset_version_whold_day(dataset_name, version_name, download_time[:8])
792
+ if dataset_name is None and version_name is None:
793
+ return
783
794
 
784
795
  if store_path is None:
785
796
  store_path = str(Path.cwd())
oafuncs/oa_tool/email.py CHANGED
@@ -4,8 +4,8 @@
4
4
  Author: Liu Kun && 16031215@qq.com
5
5
  Date: 2024-11-21 09:47:41
6
6
  LastEditors: Liu Kun && 16031215@qq.com
7
- LastEditTime: 2024-11-21 10:18:08
8
- FilePath: \\Python\\My_Funcs\\OAFuncs\\OAFuncs\\oa_tool\\email.py
7
+ LastEditTime: 2024-11-29 20:54:43
8
+ FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_tool\\email.py
9
9
  Description:
10
10
  EditPlatform: vscode
11
11
  ComputerInfo: XPS 15 9510
@@ -88,7 +88,7 @@ def _send_message(title, content, msg_to):
88
88
  print('发送内容为:\n{}\n\n'.format(content))
89
89
 
90
90
 
91
- def send(title='Title', content='Content', send_to='16031215@qq.com'):
91
+ def send(title='Title', content=None, send_to='16031215@qq.com'):
92
92
  '''
93
93
  Description: 发送邮件
94
94
 
@@ -103,7 +103,11 @@ def send(title='Title', content='Content', send_to='16031215@qq.com'):
103
103
  Example:
104
104
  send(title='Title', content='Content', '123@qq.com')
105
105
  '''
106
- _send_message(title, content, send_to)
106
+ if content is None:
107
+ # 避免发送空邮件,或有人误调用
108
+ return
109
+ else:
110
+ _send_message(title, content, send_to)
107
111
 
108
112
 
109
113
  if __name__ == "__main__":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: oafuncs
3
- Version: 0.0.65
3
+ Version: 0.0.66
4
4
  Summary: My short description for my project.
5
5
  Home-page: https://github.com/Industry-Pays/OAFuncs
6
6
  Author: Kun Liu
@@ -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=MU1QEVrINKXdFLlZf1RDjPO97HMKym8JvxYnyDphslA,65626
10
+ oafuncs/oa_down/hycom_3hourly.py,sha256=AmU3F2-L1L5bKRG8sV3FbLOFTw6ePvmXhu51h60BKKo,65906
11
11
  oafuncs/oa_down/hycom_3hourly_wholeday.py,sha256=bEl-hdSPJqN_9IaJIF-la0jEPw-sbCaKnciPirsWgP8,62598
12
12
  oafuncs/oa_down/literature.py,sha256=dT3-7-beEzQ9mTP8LNV9Gf3q5Z1Pqqjc6FOS010HZeQ,17833
13
13
  oafuncs/oa_down/refs_pdf.py,sha256=wr1sIYO2FUBJTn-K79NylbRUvCAFaee6_fQljxSI_Q8,17979
@@ -16,9 +16,9 @@ oafuncs/oa_sign/meteorological.py,sha256=mLbupsZSq427HTfVbZMvIlFzDHwSzQAbK3X19o8
16
16
  oafuncs/oa_sign/ocean.py,sha256=xrW-rWD7xBWsB5PuCyEwQ1Q_RDKq2KCLz-LOONHgldU,5932
17
17
  oafuncs/oa_sign/scientific.py,sha256=a4JxOBgm9vzNZKpJ_GQIQf7cokkraV5nh23HGbmTYKw,5064
18
18
  oafuncs/oa_tool/__init__.py,sha256=IKOlqpWlb4cMDCtq2VKR_RTxQHDNqR_vfqqsOsp_lKQ,466
19
- oafuncs/oa_tool/email.py,sha256=7EX3VkD8TxYAKPLOuC_yS104p9zbKilZlGfkVa2C6BQ,2947
20
- oafuncs-0.0.65.dist-info/LICENSE.txt,sha256=rMtLpVg8sKiSlwClfR9w_Dd_5WubTQgoOzE2PDFxzs4,1074
21
- oafuncs-0.0.65.dist-info/METADATA,sha256=H-VYmc1lwVJwwY1Z3RYL-48Ei0jOLZSJLTVxU_1J_N4,22378
22
- oafuncs-0.0.65.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
23
- oafuncs-0.0.65.dist-info/top_level.txt,sha256=bgC35QkXbN4EmPHEveg_xGIZ5i9NNPYWqtJqaKqTPsQ,8
24
- oafuncs-0.0.65.dist-info/RECORD,,
19
+ oafuncs/oa_tool/email.py,sha256=4lJxV_KUzhxgLYfVwYTqp0qxRugD7fvsZkXDe5WkUKo,3052
20
+ oafuncs-0.0.66.dist-info/LICENSE.txt,sha256=rMtLpVg8sKiSlwClfR9w_Dd_5WubTQgoOzE2PDFxzs4,1074
21
+ oafuncs-0.0.66.dist-info/METADATA,sha256=n3T2-LjyuhY966ZAVTKOFuCHuKoVFu9RoPyk6YO9E6g,22378
22
+ oafuncs-0.0.66.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
23
+ oafuncs-0.0.66.dist-info/top_level.txt,sha256=bgC35QkXbN4EmPHEveg_xGIZ5i9NNPYWqtJqaKqTPsQ,8
24
+ oafuncs-0.0.66.dist-info/RECORD,,