Skip to main content

Python library for generating business dates for fast date operations and rich functionality.

Project description

https://img.shields.io/codeship/8b027c40-45fa-0135-6835-62afb45a34d4/master.svg https://readthedocs.org/projects/businessdate/badge

A fast, efficient Python library for generating business dates inherited from float for fast date operations. Typical banking business methods are provided like business holidays adjustment, day count fractions. Beside dates generic business periods offer to create time periods like ‘10Y’, ‘3 Months’ or ‘2b’. Periods can easily added to business dates.

Example Usage

from datetime import date

from businessdate import BusinessDate, BusinessPeriod

>>> BusinessDate(20140101).add_days(10)
20140111

>>> BusinessPeriod('1Y').add_months(3)
1Y3M

>>> BusinessDate(20140101) + BusinessPeriod('1Y3M')
20150301

Install

The latest stable version can always be installed or updated via pip:

$ pip install businessdate

If the above fails, please try easy_install instead:

$ easy_install businessdate

Examples

# Simplest example possible

>>> from datetime import date
>>> from businessdate import BusinessDate, BusinessPeriod, BusinessRange, BusinessSchedule
>>> BusinessDate.from_date(date(2014, 1, 1)) == BusinessDate(20140101)
True

>>> BusinessDate(20140101) + '1y6m'
20150701

>>> BusinessDate(20140101).adjust_follow()
20140102

>>> BusinessPeriod('1Y')==BusinessPeriod(years=1)
True

>>> BusinessPeriod('1Y')
1Y

>>> BusinessPeriod('1Y').add_businessdays(3)
1Y3B

>>> BusinessPeriod('1Y') + '1y6m'
1Y6M

>>> sd = BusinessDate(20151231)
>>> ed = BusinessDate(20201231)
>>> BusinessRange(sd, ed, '1y', ed)
[20151231, 20161231, 20171231, 20181231, 20191231]

>>> BusinessSchedule(sd, ed, '1y', ed)
[20151231, 20161231, 20171231, 20181231, 20191231, 20201231]

>>> BusinessSchedule(sd, ed, '1y', ed).first_stub_long()
[20151231, 20171231, 20181231, 20191231, 20201231]

Development Version

The latest development version can be installed directly from GitHub:

$ pip install --upgrade git+https://github.com/pbrisk/businessdate.git

Contributions

Issues and Pull Requests are always welcome.

License

Code and documentation are available according to the Apache Software License (see LICENSE).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

businessdate-0.4.zip (28.1 kB view hashes)

Uploaded Source

Built Distribution

businessdate-0.4-py2-none-any.whl (17.6 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page