pandas-market-calendars 4.3.2__py3-none-any.whl → 4.3.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. pandas_market_calendars/__init__.py +38 -38
  2. pandas_market_calendars/calendar_registry.py +53 -52
  3. pandas_market_calendars/calendar_utils.py +261 -261
  4. pandas_market_calendars/calendars/asx.py +66 -66
  5. pandas_market_calendars/calendars/bmf.py +206 -206
  6. pandas_market_calendars/calendars/bse.py +407 -407
  7. pandas_market_calendars/calendars/cboe.py +145 -145
  8. pandas_market_calendars/calendars/cme.py +402 -402
  9. pandas_market_calendars/calendars/cme_globex_agriculture.py +126 -127
  10. pandas_market_calendars/calendars/cme_globex_base.py +119 -119
  11. pandas_market_calendars/calendars/cme_globex_crypto.py +160 -147
  12. pandas_market_calendars/calendars/cme_globex_energy_and_metals.py +216 -216
  13. pandas_market_calendars/calendars/cme_globex_equities.py +123 -121
  14. pandas_market_calendars/calendars/cme_globex_fixed_income.py +136 -134
  15. pandas_market_calendars/calendars/cme_globex_fx.py +101 -92
  16. pandas_market_calendars/calendars/eurex.py +139 -139
  17. pandas_market_calendars/calendars/eurex_fixed_income.py +98 -0
  18. pandas_market_calendars/calendars/hkex.py +426 -426
  19. pandas_market_calendars/calendars/ice.py +81 -81
  20. pandas_market_calendars/calendars/iex.py +112 -111
  21. pandas_market_calendars/calendars/jpx.py +109 -109
  22. pandas_market_calendars/calendars/lse.py +114 -114
  23. pandas_market_calendars/calendars/mirror.py +130 -129
  24. pandas_market_calendars/calendars/nyse.py +1324 -1324
  25. pandas_market_calendars/calendars/ose.py +116 -116
  26. pandas_market_calendars/calendars/sifma.py +350 -335
  27. pandas_market_calendars/calendars/six.py +132 -132
  28. pandas_market_calendars/calendars/sse.py +311 -311
  29. pandas_market_calendars/calendars/tase.py +197 -195
  30. pandas_market_calendars/calendars/tsx.py +181 -181
  31. pandas_market_calendars/holidays/cme.py +385 -372
  32. pandas_market_calendars/holidays/cme_globex.py +214 -223
  33. pandas_market_calendars/holidays/cn.py +1455 -1455
  34. pandas_market_calendars/holidays/jp.py +398 -394
  35. pandas_market_calendars/holidays/nyse.py +1531 -1539
  36. pandas_market_calendars/holidays/oz.py +63 -65
  37. pandas_market_calendars/holidays/sifma.py +338 -350
  38. pandas_market_calendars/holidays/us.py +376 -377
  39. pandas_market_calendars/market_calendar.py +895 -895
  40. {pandas_market_calendars-4.3.2.dist-info → pandas_market_calendars-4.3.3.dist-info}/METADATA +3 -3
  41. pandas_market_calendars-4.3.3.dist-info/RECORD +50 -0
  42. pandas_market_calendars-4.3.2.dist-info/RECORD +0 -49
  43. {pandas_market_calendars-4.3.2.dist-info → pandas_market_calendars-4.3.3.dist-info}/LICENSE +0 -0
  44. {pandas_market_calendars-4.3.2.dist-info → pandas_market_calendars-4.3.3.dist-info}/NOTICE +0 -0
  45. {pandas_market_calendars-4.3.2.dist-info → pandas_market_calendars-4.3.3.dist-info}/WHEEL +0 -0
  46. {pandas_market_calendars-4.3.2.dist-info → pandas_market_calendars-4.3.3.dist-info}/top_level.txt +0 -0
@@ -1,65 +1,63 @@
1
- # OZ Holidays
2
-
3
- from pandas import DateOffset, Timestamp
4
- from pandas.tseries.holiday import (
5
- Holiday,
6
- MO,
7
- next_monday_or_tuesday,
8
- weekend_to_monday,
9
- )
10
-
11
- # New Year's Day
12
- OZNewYearsDay = Holiday(
13
- "New Year's Day",
14
- month=1,
15
- day=1,
16
- observance=weekend_to_monday,
17
- )
18
-
19
- # Australia Day
20
- AustraliaDay = Holiday(
21
- "Australia Day",
22
- month=1,
23
- day=26,
24
- observance=weekend_to_monday,
25
- )
26
-
27
- # ANZAC Day
28
- AnzacDay = Holiday(
29
- "ANZAC Day",
30
- month=4,
31
- day=25,
32
- )
33
-
34
- # Queen's Birthday
35
- QueensBirthday = Holiday(
36
- "Queen's Birthday",
37
- month=6,
38
- day=1,
39
- offset=DateOffset(weekday=MO(2)),
40
- )
41
-
42
- # Christmas
43
- Christmas = Holiday(
44
- "Christmas",
45
- month=12,
46
- day=25,
47
- observance=weekend_to_monday,
48
- )
49
-
50
-
51
- # Boxing day
52
- BoxingDay = Holiday(
53
- "Boxing Day",
54
- month=12,
55
- day=26,
56
- observance=next_monday_or_tuesday,
57
- )
58
-
59
-
60
- # One-off holiday additions and removals in Australia
61
-
62
- UniqueCloses = []
63
-
64
- # National Day of Mourning for Her Majesty the Queen
65
- UniqueCloses.append(Timestamp("2022-09-22", tz="UTC"))
1
+ # OZ Holidays
2
+
3
+ from pandas import DateOffset, Timestamp
4
+ from pandas.tseries.holiday import (
5
+ Holiday,
6
+ MO,
7
+ next_monday_or_tuesday,
8
+ weekend_to_monday,
9
+ )
10
+
11
+ # New Year's Day
12
+ OZNewYearsDay = Holiday(
13
+ "New Year's Day",
14
+ month=1,
15
+ day=1,
16
+ observance=weekend_to_monday,
17
+ )
18
+
19
+ # Australia Day
20
+ AustraliaDay = Holiday(
21
+ "Australia Day",
22
+ month=1,
23
+ day=26,
24
+ observance=weekend_to_monday,
25
+ )
26
+
27
+ # ANZAC Day
28
+ AnzacDay = Holiday(
29
+ "ANZAC Day",
30
+ month=4,
31
+ day=25,
32
+ )
33
+
34
+ # Queen's Birthday
35
+ QueensBirthday = Holiday(
36
+ "Queen's Birthday",
37
+ month=6,
38
+ day=1,
39
+ offset=DateOffset(weekday=MO(2)),
40
+ )
41
+
42
+ # Christmas
43
+ Christmas = Holiday(
44
+ "Christmas",
45
+ month=12,
46
+ day=25,
47
+ observance=weekend_to_monday,
48
+ )
49
+
50
+ # Boxing day
51
+ BoxingDay = Holiday(
52
+ "Boxing Day",
53
+ month=12,
54
+ day=26,
55
+ observance=next_monday_or_tuesday,
56
+ )
57
+
58
+ # One-off holiday additions and removals in Australia
59
+
60
+ UniqueCloses = []
61
+
62
+ # National Day of Mourning for Her Majesty the Queen
63
+ UniqueCloses.append(Timestamp("2022-09-22", tz="UTC"))