Metadata-Version: 1.2
Name: ManHourCalendar
Version: 0.9.1a2
Summary: Calendar to manage your man-hour.
Home-page: https://github.com/wavky/ManHourCalendar
Author: Wavky Huang
Author-email: master@wavky.com
License: MIT
Description-Content-Type: UNKNOWN
Description: Man Hour Calendar
        =================
        
        A simple monthly calendar for checking and scheduling your working
        man-hours. （Mainly for Japan)
        
        `中文版文档 <https://github.com/wavky/ManHourCalendar/blob/master/README.zh.md>`__
        
        This is a CLI tool, just as my first python project, created to deal
        with my monthly man-hour calculation.
        
        Usage
        -----
        
        The simply way to use it like this flow:
        
        .. code:: sh
        
            # Initialize your Job file first.
            # It will also update the Japanese holidays schedule at the first time.
            $ mhcalendar -J ...
        
            # Check out the man-hour schedule of current month.
            $ mhcalendar
        
            # Check in your man-hour of first day.
            # Ensure that you will check in everyday.
            $ mhcalendar -c 8
        
            # Check out your schedule again to confirm your next day's work hours.
            $ mhcalendar
        
        
            # Schedule your day off or on duty days anytime before it comes.
            # For example, make date of 9, 10 and 11 as dayoff, and go to work at 13th.
            $ mhcalendar --dayoff -- 9 10 11 -13
        
            # Remember to Update your schedule by calling this
            $ mhcalendar
        
        For more information you can check it out by command:
        
        .. code:: sh
        
            $ mhcalendar -h
        
        Also you can run it by your python script, refer to this file:
        
        `Example.py <https://github.com/wavky/ManHourCalendar/blob/master/mhcalendar/example.py>`__
        
        Install
        -------
        
        This program is written in python3, you need to install the python3 and
        pip3 before this installation.
        
        .. code:: sh
        
            pip3 install ManHourCalendar
        
        About data
        ----------
        
        For simple, we haven't use database this time, all data is only cache in
        this folder as files:
        
        .. code:: sh
        
            ~/.mhcalendar/
            # or your user dir in Windows such as
            C:\Users\username\.mhcalendar\
        
        And holidays schedule is fetched from the site below:
        
        http://calendar-service.net/
        
        ご提供ありがとうございます！
        
Keywords: man-hour,manhour,man hour,calendar,schedule
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Office/Business :: Scheduling
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Requires-Python: >=3
