Metadata-Version: 2.1
Name: k3time
Version: 0.1.2
Summary: Time convertion utils
Home-page: https://github.com/drmingdrmer/k3time
Author: Zhang Yanpo
Author-email: drdr.xp@gmail.com
License: MIT
Description: # k3time
        
        [![Build Status](https://travis-ci.com/pykit3/k3time.svg?branch=master)](https://travis-ci.com/pykit3/k3time)
        [![Documentation Status](https://readthedocs.org/projects/k3time/badge/?version=stable)](https://k3time.readthedocs.io/en/stable/?badge=stable)
        [![Package](https://img.shields.io/pypi/pyversions/k3time)](https://pypi.org/project/k3time)
        
        Time convertion utils
        
        k3time is a component of [pykit3] project: a python3 toolkit set.
        
        
        # Install
        
        ```
        pip install k3time
        ```
        
        # Synopsis
        
        ```python
        >>> parse('2017-01-24T07:51:59.000Z', 'iso')
        datetime.datetime(2017, 1, 24, 7, 51, 59)
        >>> format_ts(1485216000, 'iso')
        '2017-01-24T00:00:00.000Z'
        >>> format_ts(1485216000, '%Y-%m-%d')
        '2017-01-24'
        ```
        
        #   Author
        
        Zhang Yanpo (张炎泼) <drdr.xp@gmail.com>
        
        #   Copyright and License
        
        The MIT License (MIT)
        
        Copyright (c) 2015 Zhang Yanpo (张炎泼) <drdr.xp@gmail.com>
        
        
        [pykit3]: https://github.com/pykit3
Keywords: time,date,timestamp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.0
Description-Content-Type: text/markdown
