Metadata-Version: 2.1
Name: python-time
Version: 0.3.0
Summary: sample time module
Home-page: https://github.com/hengdai/pytime
Author: binary
Author-email: nothing_style@126.com
License: MIT
Description: # 一个简易的时间模块，包含常用的时间方法，仅支持python3
        
        安装：
        
        ```
        pip install python-time
        ```
        
        使用方法，例如：
        
        ```
        from pytime import time
        print(pytime.timestamps())
        ```
        
        输出：
        
        ```
        1576225887
        ```
        
        提供的所有方法：
        
        ```
        
        pytime.timestamps()
        
        pytime.microtime()
        
        pytime.time_format(timestamp=None, format="%Y-%m-%d %X")
        
        pytime.strtotime(format_time)
        
        pytime.shift(time_type: str, timestamp: int=None)
        
        pytime.sleep(second: int)
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
