Metadata-Version: 2.1
Name: holiday_jp
Version: 19.10.14
Summary: Japanese holiday for Python
Home-page: https://github.com/LUXEYS/holiday_jp-python
Author: Luxeys
Author-email: tessier@luxeys.com
License: MIT
Description: [![Build Status](https://travis-ci.org/LUXEYS/holiday_jp-python.svg?branch=master)](https://travis-ci.org/LUXEYS/holiday_jp-python)
         [![PyPI version](https://img.shields.io/pypi/v/holiday-jp.svg)](https://pypi.org/project/holiday-jp/)
         [![PyPI downloads](https://img.shields.io/pypi/dm/holiday-jp.svg)](https://pypi.org/project/holiday-jp/)
         [![GitHub release](https://img.shields.io/github/release/LUXEYS/holiday_jp-python.svg)](https://github.com/LUXEYS/holiday_jp-python/releases)
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/62a2d65ded034d8d8b3155ab9cb28e78)](https://www.codacy.com/manual/gabriel-tessier/holiday_jp-python?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=LUXEYS/holiday_jp-python&amp;utm_campaign=Badge_Grade)
        
        # holiday_jp-python
        
        Japanese holiday for Python 3+
        
        ## install
        
        > pip install holiday-jp
        
        ### dependencies
        > pip3 install -r requirements.txt
        
        using dataset from https://github.com/holiday-jp/holiday_jp
        
        ### test
        > python3 -m unittest holiday_jp.test
        
        ### for dev
        Build on linux with python 3.x
        
        Build command:
        > python3 setup.py sdist
        
        OR
        
        Run ./build.sh
        build the package that will be available in the dist/ directory
        
        ### alternative install
        
        download the release and install this way:
        pip3 install holiday_jp-xxx.tar.gz
        
        ## Usage
        
        ```python
        from holiday_jp import HolidayJp
        # with string date YYYY-MM-DD
        if HolidayJp('1990-01-01').is_holiday:
          print('True')
        
        import datetime
        from holiday_jp import HolidayJp
        # or date object
        if HolidayJp(datetime.date.today()).is_holiday:
          print('False')
        else:
          print('True')
        
        # Between return holidays between 2 dates in text
        holidays = HolidayJp.between('2009-01-01', '2009-01-31')
        new_year_day = holidays[0]
        self.assertEqual(datetime.date(year=2009, month=1, day=1), new_year_day.date_obj)
        self.assertEqual('元日', new_year_day.name)
        
        # Or date object
        holidays = HolidayJp.between(datetime.date(year=2008, month=12, day=23), datetime.date(year=2009, month=1, day=12))
        ```
        
        For more usage check the unit test holiday_jp/test.py
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
