opendate 0.1.11

Creator: railscoder56

Last updated:

Add to Cart

Description:

opendate 0.1.11

opendate
A wrapper around Pendulum with business (NYSE default, extendable) days/hours awareness.
Documentation pending, see tests for examples. Functionality is near-identical to Pendulum with the exception of a business modifier.
The main module is named date rather than pendulum
Ex:
from date import Date, DateTime, Time, Interval

thedate = Date.today()

# add days
thedate.add(days=5)
thedate.business().add(days=5) # add 5 business day

# subtract days
thedate.subtract(days=5)
thedate.business().subtract(days=5) # subtract 5 business day

# start of month
thedate.start_of('month')
thedate.business().start_of('month') # end of month + N days until valid business day

# end of month
thedate.end_of('month')
thedate.business().end_of('month') # end of month - N days until valid business day

# ...

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.