Metadata-Version: 1.1
Name: date-cli
Version: 0.0.1
Summary: Date Command for shell
Home-page: https://github.com/Jhengsh/date-cli
Author: Hsueh-Hung Cheng
Author-email: jhengsh.email@gmail.com
License: MIT
Description: ========
        date-cli
        ========
        
        .. image:: https://travis-ci.org/Jhengsh/date-cli.svg?branch=master
           :target: https://travis-ci.org/Jhengsh/date-cli
           :alt: Build Status
        
        This package provides date command line.
        
        * date_range: help you generate date between 2 date(format: yyyymmdd)
        * month_range: help you generate date between 2 month(format: yyyymm)
        
        ------------
        Installation
        ------------
        
        Method 1: Using PyPI
        
            $ pip install date-cli
        
        Method 2: Using git
        
            $ pip install git+https://github.com/Jhengsh/date-cli.git
        
        --------
        Tuturial
        --------
        
        Basic Use::
        
            $ date_range -s 20200225 -e 20200305 | awk '{print "python execute.py --yyyymmdd "$1";"}'
            # python execute.py --yyyymmdd 20200225;
            # python execute.py --yyyymmdd 20200226;
            # python execute.py --yyyymmdd 20200227;
            # python execute.py --yyyymmdd 20200228;
            # python execute.py --yyyymmdd 20200229;
            # python execute.py --yyyymmdd 20200301;
            # python execute.py --yyyymmdd 20200302;
            # python execute.py --yyyymmdd 20200303;
            # python execute.py --yyyymmdd 20200304;
            # python execute.py --yyyymmdd 20200305;
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
