oafuncs 0.0.97.1__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 +54 -0
 - oafuncs/_script/__init__.py +27 -0
 - oafuncs/_script/plot_dataset.py +299 -0
 - oafuncs/data_store/OAFuncs.png +0 -0
 - oafuncs/data_store/hycom_3hourly.png +0 -0
 - oafuncs/oa_cmap.py +215 -0
 - oafuncs/oa_data.py +293 -0
 - oafuncs/oa_down/User_Agent-list.txt +6697 -0
 - oafuncs/oa_down/__init__.py +22 -0
 - oafuncs/oa_down/hycom_3hourly.py +1309 -0
 - oafuncs/oa_down/hycom_3hourly_20250129.py +1307 -0
 - oafuncs/oa_down/idm.py +50 -0
 - oafuncs/oa_down/literature.py +288 -0
 - oafuncs/oa_down/test_ua.py +151 -0
 - oafuncs/oa_down/user_agent.py +31 -0
 - oafuncs/oa_draw.py +326 -0
 - oafuncs/oa_file.py +413 -0
 - oafuncs/oa_help.py +144 -0
 - oafuncs/oa_model/__init__.py +19 -0
 - oafuncs/oa_model/roms/__init__.py +20 -0
 - oafuncs/oa_model/roms/test.py +19 -0
 - oafuncs/oa_model/wrf/__init__.py +18 -0
 - oafuncs/oa_model/wrf/little_r.py +186 -0
 - oafuncs/oa_nc.py +523 -0
 - oafuncs/oa_python.py +108 -0
 - oafuncs/oa_sign/__init__.py +21 -0
 - oafuncs/oa_sign/meteorological.py +168 -0
 - oafuncs/oa_sign/ocean.py +158 -0
 - oafuncs/oa_sign/scientific.py +139 -0
 - oafuncs/oa_tool/__init__.py +19 -0
 - oafuncs/oa_tool/email.py +114 -0
 - oafuncs/oa_tool/parallel.py +90 -0
 - oafuncs/oa_tool/time.py +22 -0
 - oafuncs-0.0.97.1.dist-info/LICENSE.txt +19 -0
 - oafuncs-0.0.97.1.dist-info/METADATA +106 -0
 - oafuncs-0.0.97.1.dist-info/RECORD +38 -0
 - oafuncs-0.0.97.1.dist-info/WHEEL +5 -0
 - oafuncs-0.0.97.1.dist-info/top_level.txt +1 -0
 
    
        oafuncs/oa_tool/time.py
    ADDED
    
    | 
         @@ -0,0 +1,22 @@ 
     | 
|
| 
      
 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]
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Copyright (c) 2024/10/06 OAFuncs
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 4 
     | 
    
         
            +
            of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
      
 5 
     | 
    
         
            +
            in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 6 
     | 
    
         
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 7 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 8 
     | 
    
         
            +
            furnished to do so, subject to the following conditions:
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be included in all
         
     | 
| 
      
 11 
     | 
    
         
            +
            copies or substantial portions of the Software.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 14 
     | 
    
         
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 15 
     | 
    
         
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
      
 16 
     | 
    
         
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 17 
     | 
    
         
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 18 
     | 
    
         
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
      
 19 
     | 
    
         
            +
            SOFTWARE.
         
     | 
| 
         @@ -0,0 +1,106 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Metadata-Version: 2.2
         
     | 
| 
      
 2 
     | 
    
         
            +
            Name: oafuncs
         
     | 
| 
      
 3 
     | 
    
         
            +
            Version: 0.0.97.1
         
     | 
| 
      
 4 
     | 
    
         
            +
            Summary: Oceanic and Atmospheric Functions
         
     | 
| 
      
 5 
     | 
    
         
            +
            Home-page: https://github.com/Industry-Pays/OAFuncs
         
     | 
| 
      
 6 
     | 
    
         
            +
            Author: Kun Liu
         
     | 
| 
      
 7 
     | 
    
         
            +
            Author-email: liukun0312@stu.ouc.edu.cn
         
     | 
| 
      
 8 
     | 
    
         
            +
            License: MIT
         
     | 
| 
      
 9 
     | 
    
         
            +
            Classifier: License :: OSI Approved :: MIT License
         
     | 
| 
      
 10 
     | 
    
         
            +
            Classifier: Programming Language :: Python
         
     | 
| 
      
 11 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: 3
         
     | 
| 
      
 12 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: 3.10
         
     | 
| 
      
 13 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: 3.11
         
     | 
| 
      
 14 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: 3.12
         
     | 
| 
      
 15 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: Implementation :: CPython
         
     | 
| 
      
 16 
     | 
    
         
            +
            Classifier: Programming Language :: Python :: Implementation :: PyPy
         
     | 
| 
      
 17 
     | 
    
         
            +
            Requires-Python: >=3.9.0
         
     | 
| 
      
 18 
     | 
    
         
            +
            Description-Content-Type: text/markdown
         
     | 
| 
      
 19 
     | 
    
         
            +
            License-File: LICENSE.txt
         
     | 
| 
      
 20 
     | 
    
         
            +
            Requires-Dist: numpy
         
     | 
| 
      
 21 
     | 
    
         
            +
            Requires-Dist: scipy
         
     | 
| 
      
 22 
     | 
    
         
            +
            Requires-Dist: pandas
         
     | 
| 
      
 23 
     | 
    
         
            +
            Requires-Dist: xarray
         
     | 
| 
      
 24 
     | 
    
         
            +
            Requires-Dist: rich
         
     | 
| 
      
 25 
     | 
    
         
            +
            Requires-Dist: pathlib
         
     | 
| 
      
 26 
     | 
    
         
            +
            Requires-Dist: requests
         
     | 
| 
      
 27 
     | 
    
         
            +
            Requires-Dist: bs4
         
     | 
| 
      
 28 
     | 
    
         
            +
            Requires-Dist: matplotlib
         
     | 
| 
      
 29 
     | 
    
         
            +
            Requires-Dist: netCDF4
         
     | 
| 
      
 30 
     | 
    
         
            +
            Requires-Dist: xlrd
         
     | 
| 
      
 31 
     | 
    
         
            +
            Requires-Dist: geopandas
         
     | 
| 
      
 32 
     | 
    
         
            +
            Requires-Dist: Cartopy
         
     | 
| 
      
 33 
     | 
    
         
            +
            Requires-Dist: rasterio
         
     | 
| 
      
 34 
     | 
    
         
            +
            Requires-Dist: salem
         
     | 
| 
      
 35 
     | 
    
         
            +
            Dynamic: author
         
     | 
| 
      
 36 
     | 
    
         
            +
            Dynamic: author-email
         
     | 
| 
      
 37 
     | 
    
         
            +
            Dynamic: classifier
         
     | 
| 
      
 38 
     | 
    
         
            +
            Dynamic: description
         
     | 
| 
      
 39 
     | 
    
         
            +
            Dynamic: description-content-type
         
     | 
| 
      
 40 
     | 
    
         
            +
            Dynamic: home-page
         
     | 
| 
      
 41 
     | 
    
         
            +
            Dynamic: license
         
     | 
| 
      
 42 
     | 
    
         
            +
            Dynamic: requires-dist
         
     | 
| 
      
 43 
     | 
    
         
            +
            Dynamic: requires-python
         
     | 
| 
      
 44 
     | 
    
         
            +
            Dynamic: summary
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            # oafuncs
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            ## Description
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            **Python Function**
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            ```text
         
     | 
| 
      
 54 
     | 
    
         
            +
            In the field of geoscience, some commonly used and universal operations!
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            Just for the convenience of daily use, some complex operations are integrated into general functions.
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            The code will be optimized and updated from time to time, with additions, deletions, or modifications…
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            Existing functions will not be completely removed, they might just have a different function name, or the parameter passing might have been optimized…
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
            Note: If there are any requirements, you can email to liukun0312@stu.ouc.edu.cn. Within my capabilities, I can consider implementing them.
         
     | 
| 
      
 63 
     | 
    
         
            +
            ```
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
            ## PyPI
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            ```html
         
     | 
| 
      
 68 
     | 
    
         
            +
            https://pypi.org/project/oafuncs
         
     | 
| 
      
 69 
     | 
    
         
            +
            ```
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
            ## Github
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            ```html
         
     | 
| 
      
 74 
     | 
    
         
            +
            https://github.com/Industry-Pays/OAFuncs
         
     | 
| 
      
 75 
     | 
    
         
            +
            ```
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            ## Example
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            ```python
         
     | 
| 
      
 80 
     | 
    
         
            +
            import oafuncs
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            # 查询当前所有可用函数
         
     | 
| 
      
 83 
     | 
    
         
            +
            oafuncs.oa_help.query()
         
     | 
| 
      
 84 
     | 
    
         
            +
            # 根据函数名获取使用方法
         
     | 
| 
      
 85 
     | 
    
         
            +
            oafuncs.oa_help.use('query')
         
     | 
| 
      
 86 
     | 
    
         
            +
            ```
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
            ```shell
         
     | 
| 
      
 89 
     | 
    
         
            +
            # 此小板块于2024/12/26更新,仅为示例,不代表最新情况
         
     | 
| 
      
 90 
     | 
    
         
            +
            函数数量:
         
     | 
| 
      
 91 
     | 
    
         
            +
            49
         
     | 
| 
      
 92 
     | 
    
         
            +
            函数列表:
         
     | 
| 
      
 93 
     | 
    
         
            +
            ['MidpointNormalize', 'add_cartopy', 'add_gridlines', 'add_lonlat_unit', 'check_ncfile', 'choose_cmap', 'clear_folder', 'cmap2colors', 'convert_longitude', 'copy_file', 'create_cmap', 'create_cmap_rgbtxt', 'create_gif', 'download', 'download5doi', 'draw_time_range', 'extract5nc', 'fig_minus', 'file_size', 'find_file', 'get_time_list', 'get_ua', 'get_var', 'how_to_use', 'install_lib', 'interp_2d', 'link_file', 'make_folder', 'merge5nc', 'modify_var_attr', 'modify_var_value', 'nc_isel', 'plot_contourf', 'plot_contourf_cartopy', 'plot_contourf_lonlat', 'plot_quiver', 'query', 'remove', 'remove_empty_folder', 'rename_file', 'rename_var_or_dim', 'send', 'show', 'sign_in_love_ocean', 'sign_in_meteorological_home', 'sign_in_scientific_research', 'upgrade_lib', 'use', 'write2nc']
         
     | 
| 
      
 94 
     | 
    
         
            +
            模块全路径:
         
     | 
| 
      
 95 
     | 
    
         
            +
            oafuncs.oa_help.query
         
     | 
| 
      
 96 
     | 
    
         
            +
            函数提示:
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
                description: 查看oafuncs模块的函数列表
         
     | 
| 
      
 99 
     | 
    
         
            +
                example: query()
         
     | 
| 
      
 100 
     | 
    
         
            +
            ```
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
            ## Structure
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            <img title="" src="./oafuncs/data_store/OAFuncs.png" alt="">
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
            <img title="OAFuncs" src="https://raw.githubusercontent.com/Industry-Pays/OAFuncs/main/oafuncs/data_store/OAFuncs.png" alt="OAFuncs">
         
     | 
| 
         @@ -0,0 +1,38 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            oafuncs/__init__.py,sha256=8hcjwG1FRS1arFer9R-XXrf0RWW5kVksLUG6D73niJk,1690
         
     | 
| 
      
 2 
     | 
    
         
            +
            oafuncs/oa_cmap.py,sha256=OfJ2DOBOGX5X1GihE6CPcTV8bAFdDqJSXV7vbqUgV9s,7552
         
     | 
| 
      
 3 
     | 
    
         
            +
            oafuncs/oa_data.py,sha256=32elvoBHibTunDXAK9ptQ-e-xrXxKM4GrPiMqWNv_lE,12169
         
     | 
| 
      
 4 
     | 
    
         
            +
            oafuncs/oa_draw.py,sha256=QypQp4vJIrbAyFddEVxd9K9Q4d85PRYqYQi9xDUmSZw,11150
         
     | 
| 
      
 5 
     | 
    
         
            +
            oafuncs/oa_file.py,sha256=ThMmJ6-pu7U6ssSh44Nd-cCxxJ1Mgd0izzKnDox9LM0,14572
         
     | 
| 
      
 6 
     | 
    
         
            +
            oafuncs/oa_help.py,sha256=loyzTbjU_0VpSIBvAEUA_tqxG8MVsO0xFE_2hgQ3zMw,4188
         
     | 
| 
      
 7 
     | 
    
         
            +
            oafuncs/oa_nc.py,sha256=Sau7xU5keW3Lcwzi9htgZ7rqdu4t-pBjBLRXZ6kV4kQ,20122
         
     | 
| 
      
 8 
     | 
    
         
            +
            oafuncs/oa_python.py,sha256=Q-6UGGw_dJff7Ef8i87fsLPoGeHV5jBzfb-7HP4THR0,4018
         
     | 
| 
      
 9 
     | 
    
         
            +
            oafuncs/_script/__init__.py,sha256=P0R_viNX4f00eB3Ite7Aw_tVzgCcj5neXTtRMj1StA0,757
         
     | 
| 
      
 10 
     | 
    
         
            +
            oafuncs/_script/plot_dataset.py,sha256=4PEMXI7NUgLMKwo-33y_AUrmUYS7BzmInCDyFalaZSk,13136
         
     | 
| 
      
 11 
     | 
    
         
            +
            oafuncs/data_store/OAFuncs.png,sha256=y1_x-mUP3gFjcy6m8FqfvQO_HgjzPhQKfXjnSHjslZE,3436152
         
     | 
| 
      
 12 
     | 
    
         
            +
            oafuncs/data_store/hycom_3hourly.png,sha256=azt_uPcXtl_8CSKRLLPCIf5pPrcxMiOzvoFQnwb0zUo,12411415
         
     | 
| 
      
 13 
     | 
    
         
            +
            oafuncs/oa_down/User_Agent-list.txt,sha256=pazxSip8_lphEBOPHG902zmIBUg8sBKXgmqp_g6j_E4,661062
         
     | 
| 
      
 14 
     | 
    
         
            +
            oafuncs/oa_down/__init__.py,sha256=kRX5eTUCbAiz3zTaQM1501paOYS_3fizDN4Pa0mtNUA,585
         
     | 
| 
      
 15 
     | 
    
         
            +
            oafuncs/oa_down/hycom_3hourly.py,sha256=lCdbYQd7o_2jMgwmbrClNo5omrj5b5cnWnp6lnXMloQ,65307
         
     | 
| 
      
 16 
     | 
    
         
            +
            oafuncs/oa_down/hycom_3hourly_20250129.py,sha256=zbUp5NNBMzDXEqSC0-Z9H_EoM6Fg-6tXymK0AXH9qRk,65553
         
     | 
| 
      
 17 
     | 
    
         
            +
            oafuncs/oa_down/idm.py,sha256=XfYCNnQWADxOhhJd-T8sNYN0nGiRrAs7zbQcsB5-UmI,1668
         
     | 
| 
      
 18 
     | 
    
         
            +
            oafuncs/oa_down/literature.py,sha256=2bF9gSKQbzcci9LcKE81j8JEjIJwON7jbwQB3gDDA3E,11331
         
     | 
| 
      
 19 
     | 
    
         
            +
            oafuncs/oa_down/test_ua.py,sha256=0IQq3NjqfNr7KkyjS_U-a4mYu-r-E7gzawwo4IfEa6Y,10851
         
     | 
| 
      
 20 
     | 
    
         
            +
            oafuncs/oa_down/user_agent.py,sha256=TsPcAxFmMTYAEHRFjurI1bQBJfDhcA70MdHoUPwQmks,785
         
     | 
| 
      
 21 
     | 
    
         
            +
            oafuncs/oa_model/__init__.py,sha256=__ImltHkP1bSsIpsmKpDE8QwwA-2Z8K7mZUHGGcRdro,484
         
     | 
| 
      
 22 
     | 
    
         
            +
            oafuncs/oa_model/roms/__init__.py,sha256=g-_iv2vUFUnSsKWc7pzGRfkNUvhxfG-Bn4deqfGwxyo,474
         
     | 
| 
      
 23 
     | 
    
         
            +
            oafuncs/oa_model/roms/test.py,sha256=j3xiZdf3YtQQbNoT3Op_-GxI_zjKYtS3Hk6CTcnoBmA,425
         
     | 
| 
      
 24 
     | 
    
         
            +
            oafuncs/oa_model/wrf/__init__.py,sha256=_2qUijimSlu7fsqlZunkZ4NF_FXSENwU5YmlJ9BZ6fM,473
         
     | 
| 
      
 25 
     | 
    
         
            +
            oafuncs/oa_model/wrf/little_r.py,sha256=wx9vzfGznVuaa4T6m_4N89I1a57KZSLQ382EA5iu2Io,7458
         
     | 
| 
      
 26 
     | 
    
         
            +
            oafuncs/oa_sign/__init__.py,sha256=QKqTFrJDFK40C5uvk48GlRRbGFzO40rgkYwu6dYxatM,563
         
     | 
| 
      
 27 
     | 
    
         
            +
            oafuncs/oa_sign/meteorological.py,sha256=mLbupsZSq427HTfVbZMvIlFzDHwSzQAbK3X19o8anFY,6525
         
     | 
| 
      
 28 
     | 
    
         
            +
            oafuncs/oa_sign/ocean.py,sha256=xrW-rWD7xBWsB5PuCyEwQ1Q_RDKq2KCLz-LOONHgldU,5932
         
     | 
| 
      
 29 
     | 
    
         
            +
            oafuncs/oa_sign/scientific.py,sha256=a4JxOBgm9vzNZKpJ_GQIQf7cokkraV5nh23HGbmTYKw,5064
         
     | 
| 
      
 30 
     | 
    
         
            +
            oafuncs/oa_tool/__init__.py,sha256=WPrWq_vWWcUVQ32tsjA4jPQiV0LCxhxS0l4vmX43xDg,508
         
     | 
| 
      
 31 
     | 
    
         
            +
            oafuncs/oa_tool/email.py,sha256=4lJxV_KUzhxgLYfVwYTqp0qxRugD7fvsZkXDe5WkUKo,3052
         
     | 
| 
      
 32 
     | 
    
         
            +
            oafuncs/oa_tool/parallel.py,sha256=kYbiIFDB7EoxasmXGSomaEDVUsg9Rfvdgbw93lBOY7o,3770
         
     | 
| 
      
 33 
     | 
    
         
            +
            oafuncs/oa_tool/time.py,sha256=n8Ir5QFxJGZlEsOI3frxyQcN92wIvmS7-2SPQHYCg_c,486
         
     | 
| 
      
 34 
     | 
    
         
            +
            oafuncs-0.0.97.1.dist-info/LICENSE.txt,sha256=rMtLpVg8sKiSlwClfR9w_Dd_5WubTQgoOzE2PDFxzs4,1074
         
     | 
| 
      
 35 
     | 
    
         
            +
            oafuncs-0.0.97.1.dist-info/METADATA,sha256=3N3TZbjLx9oo2RmSnk5vfUUs50TinJ1CA1BYDcqUKPo,3569
         
     | 
| 
      
 36 
     | 
    
         
            +
            oafuncs-0.0.97.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
         
     | 
| 
      
 37 
     | 
    
         
            +
            oafuncs-0.0.97.1.dist-info/top_level.txt,sha256=bgC35QkXbN4EmPHEveg_xGIZ5i9NNPYWqtJqaKqTPsQ,8
         
     | 
| 
      
 38 
     | 
    
         
            +
            oafuncs-0.0.97.1.dist-info/RECORD,,
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            oafuncs
         
     |