Metadata-Version: 2.1
Name: bizdatim
Version: 0.2.0
Summary: Module for performing simple business day arithmetic; forked from python-bizdatetime
Home-page: https://github.com/Polyconseil/bizdatim
Author: Sergiy Kuzmenko
Author-email: sergiy@kuzmenko.org
Maintainer: Polyconseil Dev Team
Maintainer-email: opensource+bizdatim@polyconseil.fr
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Scheduling
Classifier: Topic :: Software Development :: Libraries :: Python Modules
License-File: LICENSE.txt

ABOUT
=====

.. image:: https://secure.travis-ci.org/Polyconseil/bizdatim.png?branch=master
    :target: http://travis-ci.org/Polyconseil/bizdatim/

.. image:: https://img.shields.io/pypi/v/bizdatim.svg
    :target: https://pypi.python.org.pypi/bizdatim/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/bizdatim.svg
    :target: https://pypi.python.org/pypi/bizdatim/
    :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/wheel/bizdatim.svg
    :target: https://pypi.python.org/pypi/bizdatim/
    :alt: Wheel status

.. image:: https://img.shields.io/pypi/l/bizdatim.svg
    :target: https://pypi.python.org/pypi/bizdatim/
    :alt: License

bizdatim is a simple library for performing business day arithmetic.

Source is hosted at https://github.com/Polyconseil/bizdatim.


KNOWN LIMITATIONS
=================

Rotating weekends/holidays are not supported (e.g., two days working, third day
off).

The business hour arithmetic is limited to additions.


DEFINITIONS
===========

Weekend
    Weekly repeating non-business day. Weekend does not have to be at the end
    (or beginning) or the week. Weekends do not have to be consecutive days.

Holiday
    Like weekend, holiday is a non-business day. Unlike weekend, holiday does
    not have weekly regularity. It is just a date. Holiday can coincide with
    weekend.

Working hours
    The starting and ending time of a business day.

Policy
    Is a (possibly empty) collection of weekends, holidays and working hours. All calculations
    are performed within a policy.


SAMPLE USAGE
============

All business day arithmetic is performed in the context of policy::
    
    >>> from bizdatim import Polycy, SAT, SUN
    >>> from datetime import date
    >>> policy = Policy(weekends=(SAT, SUN), holidays=(date(2011,7,1),))
    >>> day = date(2011, 6, 29) # Wednesday
    >>> print(policy.add(day, 2))  # add 2 business dates -> Monday after the long weekend
    datetime.date(2011, 7, 4)
    >>> print(policy.biz_day_delta(date(2011, 7, 4), date(2011, 6, 30)))  # one holiday, one weekend between
    1

There is also the possibility to do arithmetic on business hours::

    >>> policy = Policy(weekends=(SAT, SUN), holidays=(date(2011,7,1)), hours=(time(8), time(20)))
    >>> day = datetime(2011, 6, 29, 14, 30)
    >>> policy.add(day, timedelta(days=1, hours=5))  # The day after, in the afternoon
    datetime.datetime(2011, 6, 29, 19, 30)
    >>> policy.add(day, timedelta(days=1, hours=10))  # Too many hours, will finish the monday after the long weekend
    datetime.datetime(2011, 7, 4, 12, 30)

Policy method docstrings contain more examples.


