python-bizdays icon indicating copy to clipboard operation
python-bizdays copied to clipboard

Business days calculations and utilities

Results 15 python-bizdays issues
Sort by recently updated
recently updated
newest added

Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.2.0 to 10.3.0. Release notes Sourced from pillow's releases. 10.3.0 https://pillow.readthedocs.io/en/stable/releasenotes/10.3.0.html Changes CVE-2024-28219: Use strncpy to avoid buffer overflow #7928 [@​hugovk] Use functools.lru_cache for hopper() #7912 [@​hugovk]...

dependencies

enable the use of calendars from the project below https://github.com/gerrymanoim/exchange_calendars it is an implementation similar to what has been done to pandas_market_calendars.

`bizdays`, `current_days`, `adjust_next` and `adjust_previous` should be vectorized.

enhancement

A project might set a specific option to bizdays. But in another part, it needs to change this option. This should be done locally with context managers. ```python from bizdays...

enhancement

Add an option to create dates with given timezone. ``` python set_option('timezone', timezone.utc) ```

Hi! I got an unexpected error while trying to check a date using isbizday method. ``` >>> from bizdays import Calendar, load_holidays >>> cal = Calendar.load("ANBIMA") >>> cal.isbizday("2023-04-21") False >>>...

In bizdays 1.0.2, in the getdate function, I'm unable to pass in '1st bizday before 2nd fri' ``` contractyear=2002 contractmonth=5 newltd=cal.getdate("1st bizday before 2nd fri",contractyear,contractmonth) ``` This shows: ``` File...

enhancement

How do you load a calendar from another package in the python version? In R I use bizdays all the time, its amazing. In that example, let's say I wanted...

`getdate` has the following default call. ``` python getdate(self, expr, year, month=None) ``` Instead of using `year` and `month` arguments it should use a `now` argument to specify where it...