Today's date is Wednesday, August 27, 2025. To find how many business days until May 22, 2026, the business days are Monday through Friday, excluding weekends and public holidays. I need to calculate the business days between August 27, 2025, and May 22, 2026. This includes counting weekdays and subtracting U.S. federal holidays typically observed on business days in that period. I will now calculate the exact number of business days from August 27, 2025, to May 22, 2026, accounting for weekends and holidays.{"tool_uses":[{"recipient_name":"functions.execute_python","parameters":{"code":"from datetime import datetime, timedelta\nimport numpy as np\n\n# Dates\nstart_date = datetime(2025, 8, 27)\nend_date = datetime(2026, 5, 22)\n\n# US Federal Holidays observed between these dates\n# Extracted relevant holidays based on common US Federal holiday calendar\nholidays_2025_2026 = [\n datetime(2025, 9, 1), # Labor Day\n datetime(2025, 10, 13), # Indigenous Peoples' Day\n datetime(2025, 11, 11), # Veterans Day\n datetime(2025, 11, 27), # Thanksgiving\n datetime(2025, 12, 25), # Christmas\n datetime(2026, 1, 1), # New Year's Day\n datetime(2026, 1, 19), # Martin Luther King Jr. Day\n datetime(2026, 2, 16), # Presidents Day\n datetime(2026, 5, 25) # Memorial Day\n]\n\n# Function to count business days excluding weekends and holidays\n\ndef business_days_between(start_date, end_date, holidays):\n day_count = np.busday_count(start_date.date(), end_date.date())\n # Count holidays that fall on weekdays\n holiday_count = sum(1 for h in holidays if start_date <= h < end_date and h.weekday() < 5)\n return day_count - holiday_count\n\nbusiness_days = business_days_between(start_date, end_date, holidays_2025_2026)\nbusiness_days"}}There are 179 business days from Wednesday, August 27, 2025, until Friday, May 22, 2026, excluding weekends and U.S. federal holidays in that period.