I need to determine the business day number of a specific date. For example, if I were to enter the date December 14, 2017, I need the output to be 10th business day (the day of the month excluding weekends and holidays). I also have a custom list of holidays that I would want to provide.
I'm sure I can figure this out doing the date math myself, but I was wondering if there's something already available in python that could handle this for me.
I've done some searching myself and found several questions about add and subtracting business days from a date, but not returning the business day number of a specific date.