pandas-market-calendars 4.3.3__py3-none-any.whl → 4.4.1__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 (47) hide show
  1. pandas_market_calendars/__init__.py +38 -38
  2. pandas_market_calendars/calendar_registry.py +57 -53
  3. pandas_market_calendars/calendar_utils.py +262 -261
  4. pandas_market_calendars/calendars/asx.py +66 -66
  5. pandas_market_calendars/calendars/bmf.py +223 -206
  6. pandas_market_calendars/calendars/bse.py +421 -407
  7. pandas_market_calendars/calendars/cboe.py +145 -145
  8. pandas_market_calendars/calendars/cme.py +405 -402
  9. pandas_market_calendars/calendars/cme_globex_agriculture.py +172 -126
  10. pandas_market_calendars/calendars/cme_globex_base.py +119 -119
  11. pandas_market_calendars/calendars/cme_globex_crypto.py +160 -160
  12. pandas_market_calendars/calendars/cme_globex_energy_and_metals.py +216 -216
  13. pandas_market_calendars/calendars/cme_globex_equities.py +123 -123
  14. pandas_market_calendars/calendars/cme_globex_fixed_income.py +136 -136
  15. pandas_market_calendars/calendars/cme_globex_fx.py +101 -101
  16. pandas_market_calendars/calendars/eurex.py +131 -139
  17. pandas_market_calendars/calendars/eurex_fixed_income.py +98 -98
  18. pandas_market_calendars/calendars/hkex.py +429 -426
  19. pandas_market_calendars/calendars/ice.py +81 -81
  20. pandas_market_calendars/calendars/iex.py +112 -112
  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 +149 -130
  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 +354 -350
  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 -197
  30. pandas_market_calendars/calendars/tsx.py +181 -181
  31. pandas_market_calendars/holidays/cme.py +385 -385
  32. pandas_market_calendars/holidays/cme_globex.py +214 -214
  33. pandas_market_calendars/holidays/cn.py +1456 -1455
  34. pandas_market_calendars/holidays/jp.py +401 -398
  35. pandas_market_calendars/holidays/jpx_equinox.py +1 -0
  36. pandas_market_calendars/holidays/nyse.py +1531 -1531
  37. pandas_market_calendars/holidays/oz.py +63 -63
  38. pandas_market_calendars/holidays/sifma.py +350 -338
  39. pandas_market_calendars/holidays/us.py +376 -376
  40. pandas_market_calendars/market_calendar.py +922 -895
  41. {pandas_market_calendars-4.3.3.dist-info → pandas_market_calendars-4.4.1.dist-info}/METADATA +4 -4
  42. pandas_market_calendars-4.4.1.dist-info/RECORD +50 -0
  43. {pandas_market_calendars-4.3.3.dist-info → pandas_market_calendars-4.4.1.dist-info}/WHEEL +1 -1
  44. pandas_market_calendars-4.3.3.dist-info/RECORD +0 -50
  45. {pandas_market_calendars-4.3.3.dist-info → pandas_market_calendars-4.4.1.dist-info}/LICENSE +0 -0
  46. {pandas_market_calendars-4.3.3.dist-info → pandas_market_calendars-4.4.1.dist-info}/NOTICE +0 -0
  47. {pandas_market_calendars-4.3.3.dist-info → pandas_market_calendars-4.4.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pandas_market_calendars
3
- Version: 4.3.3
3
+ Version: 4.4.1
4
4
  Summary: Market and exchange trading calendars for pandas
5
5
  Author-email: Ryan Sheftel <rsheftel@alumni.upenn.edu>
6
6
  License: MIT
@@ -14,21 +14,21 @@ Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Topic :: Software Development
16
16
  Classifier: License :: OSI Approved :: MIT License
17
- Classifier: Programming Language :: Python :: 3.8
18
17
  Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
21
  Requires-Python: >=3.8
22
22
  Description-Content-Type: text/x-rst
23
23
  License-File: LICENSE
24
24
  License-File: NOTICE
25
- Requires-Dist: pandas <2.0,>=1.1
25
+ Requires-Dist: pandas >=1.1
26
26
  Requires-Dist: pytz
27
27
  Requires-Dist: python-dateutil
28
28
  Requires-Dist: exchange-calendars >=3.3
29
29
  Provides-Extra: dev
30
30
  Requires-Dist: pytest ; extra == 'dev'
31
- Requires-Dist: black ==23.7.0 ; extra == 'dev'
31
+ Requires-Dist: black ; extra == 'dev'
32
32
  Requires-Dist: pre-commit ; extra == 'dev'
33
33
 
34
34
  pandas_market_calendars
@@ -0,0 +1,50 @@
1
+ pandas_market_calendars/__init__.py,sha256=prBpkD2f2mShZjZePVa0L3_Cf-Tv48r6q-J_mFNFFuY,1323
2
+ pandas_market_calendars/calendar_registry.py,sha256=9ecKkERkztiwVaOXVsWfUcEvaT5_SwwpD5VaUAJhR1Y,2495
3
+ pandas_market_calendars/calendar_utils.py,sha256=6yBqT_FBBicSVurudGgCGpKakomnXfYORxnWLYVH2l8,11629
4
+ pandas_market_calendars/class_registry.py,sha256=lpRSp1E_1vcY73a--daCIOsJpoxpJVuhlurRGDVUqlc,3868
5
+ pandas_market_calendars/market_calendar.py,sha256=0Df4H8YZm5DBwAOzvVl4LysQ9FzqGnAqf6rfL05RNuc,33905
6
+ pandas_market_calendars/calendars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ pandas_market_calendars/calendars/asx.py,sha256=tocL_VXzbPNx89mmtXmSw7FKHy2Hzlj5HxcYjfJSn6w,1789
8
+ pandas_market_calendars/calendars/bmf.py,sha256=eyCFpG-ziuI862V5E41PFQw5cD3cOvmgnlAqcYuk9r4,5939
9
+ pandas_market_calendars/calendars/bse.py,sha256=mclRAAK5AvF9vyuIos1PexO0Z3d45ZolrPALVdcSoj0,16947
10
+ pandas_market_calendars/calendars/cboe.py,sha256=tRfq1hiOU2LpEAk-8OC5difM2qLjxNDDpkgobTQtcVI,3765
11
+ pandas_market_calendars/calendars/cme.py,sha256=YJH58ztmnKiyZZ7z2CK4pcvBLOQtflZcUFn1m3o5aLA,10450
12
+ pandas_market_calendars/calendars/cme_globex_agriculture.py,sha256=j1Dyg1Q_i3fh4452OeFa5Jw55FW0dhdjmPkmjP85KPc,4666
13
+ pandas_market_calendars/calendars/cme_globex_base.py,sha256=0mvilo9TY5O5EVHNQVNcI8TGycKM5-ymsIcZ4a-ANhU,3062
14
+ pandas_market_calendars/calendars/cme_globex_crypto.py,sha256=HbjTTN8pt2dGfgnE3LS0LIzJlaenYAzilvN9AMwkbfc,5463
15
+ pandas_market_calendars/calendars/cme_globex_energy_and_metals.py,sha256=lcd09CIfZMaZ-mXrI-6c7bqgPx8tj6-2yCOG-f2Hlu4,6620
16
+ pandas_market_calendars/calendars/cme_globex_equities.py,sha256=FMgBDPdamDAgcslQuf-BDUACCQDoYzV4lIbixNLOO-w,3639
17
+ pandas_market_calendars/calendars/cme_globex_fixed_income.py,sha256=egxw-OKUI-SPbNjsLquqPDWQIVX94-torkAuzW6a0aA,4287
18
+ pandas_market_calendars/calendars/cme_globex_fx.py,sha256=lZJpZvKWC9kGcHVjUSG69vH82VwiifLYt1rAlZsDVaM,3206
19
+ pandas_market_calendars/calendars/eurex.py,sha256=h9K0kvLggc50MKjGb61gfepuiyKovD2uPHCLBruvcBU,2677
20
+ pandas_market_calendars/calendars/eurex_fixed_income.py,sha256=irtSJvCRsn_N2AjjYe5jMvuxblgOx1BTQW2C34RGFlg,2132
21
+ pandas_market_calendars/calendars/hkex.py,sha256=dQj4roWPLxcxcMaYC9WBaFaHcqsXPdozTufF4ByZN-A,13996
22
+ pandas_market_calendars/calendars/ice.py,sha256=CnlbD3g7L6goukKZtSm-deuCdlB4ZcILTkYbol43TPQ,2159
23
+ pandas_market_calendars/calendars/iex.py,sha256=e85oEuqbyxLUkm7ZtvRw2A1RLNZj3F-v17MOFuLbCZY,3027
24
+ pandas_market_calendars/calendars/jpx.py,sha256=cXi_qLcNG6OIaQy5oLl8XPzPMR58O4Tf9Kb1yPIxM5g,3595
25
+ pandas_market_calendars/calendars/lse.py,sha256=qltdB1TdQ3F8jqx4oykzy_cZvqHlHwnsrpRXzBsovVc,3114
26
+ pandas_market_calendars/calendars/mirror.py,sha256=Oq9jRXYpKmPv6PfoKDVVLyIG7hqcuFFC7fPLcCIhl7k,4555
27
+ pandas_market_calendars/calendars/nyse.py,sha256=QtIltvSiANIAtkr3b1KQqRsZ5aT847WvxHwC0rbhgNc,60293
28
+ pandas_market_calendars/calendars/ose.py,sha256=AfF11QxKYwozaaEc2PvuP3IPvVj5D70mIl0zyp5OogE,2938
29
+ pandas_market_calendars/calendars/sifma.py,sha256=RgOX1yhT8-b6w029ILkOhU-delPCeX6uNWoWDm1Z0eE,9960
30
+ pandas_market_calendars/calendars/six.py,sha256=RYShBBuHg6O5QrMnTmdboInh0Wy5bBNRC9dR-QH9PO8,2610
31
+ pandas_market_calendars/calendars/sse.py,sha256=Bb7UF5LxTcAuBxNetnivrdz6XuEKza-TmzfGssDSh1o,10907
32
+ pandas_market_calendars/calendars/tase.py,sha256=JQdnuU7qfG_XVBBNfki3Kf3zNZ8Svo3VKOEE037EdVI,7836
33
+ pandas_market_calendars/calendars/tsx.py,sha256=3zQwdU9LkiJjZRF1fgLGHYYcJMC-443QITVS9hn4kOc,4014
34
+ pandas_market_calendars/holidays/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ pandas_market_calendars/holidays/cme.py,sha256=TrxR8xA6cgy0YcUfImaKI2QjRmqlwv6pW5KjMKsE1Rg,9089
36
+ pandas_market_calendars/holidays/cme_globex.py,sha256=0SPVGABO7K66eRitDsDgxRU52aPX8SRGgtUVyB_-LYk,5090
37
+ pandas_market_calendars/holidays/cn.py,sha256=POVI0y12lSGo437K1zpeU4AdGO9FvJBfFAKUvYCsfm0,46769
38
+ pandas_market_calendars/holidays/jp.py,sha256=rqobVw837Uxb-4D1Zq_PyBLoeyhImYW7DBwyJupJIp8,9216
39
+ pandas_market_calendars/holidays/jpx_equinox.py,sha256=KWbJqWsnkdyzG3fD2gJTXRLQOF3YTWSn9O6sYRL9Dnk,8070
40
+ pandas_market_calendars/holidays/nyse.py,sha256=8A-Lc-mZXdWqMRXaC899unyQfjv2ixjJiC16jXZ5wGo,39757
41
+ pandas_market_calendars/holidays/oz.py,sha256=P77pWe7ZQj4o-731w6fW_Vzmo41PRxh94QpclI3ZyFM,1042
42
+ pandas_market_calendars/holidays/sifma.py,sha256=gELES9-NeV3QNGE4JpsVfmcs1-jtYQrLxjnG4B-4RmM,8754
43
+ pandas_market_calendars/holidays/uk.py,sha256=dt5TNONlDMXPw8wjyyPBYNnLO5Yz6Mht8VrPUrNqy-M,4719
44
+ pandas_market_calendars/holidays/us.py,sha256=OBBMMKTRzghD-b9CmPRe5zBh7zQYjWl4-9SogT6ZnBo,11515
45
+ pandas_market_calendars-4.4.1.dist-info/LICENSE,sha256=qW51_A-I7YutlB-s8VSKeOP-aL83T-Lb8LqqU1x1ilw,1065
46
+ pandas_market_calendars-4.4.1.dist-info/METADATA,sha256=AEdB9Of7N2uW4vT4a9izyABgrYnYmDpAsQ30HPpaCak,9011
47
+ pandas_market_calendars-4.4.1.dist-info/NOTICE,sha256=mmH7c9aF5FsELh1OHXloXw1TajLD_mWDKO4dsVf43_E,11693
48
+ pandas_market_calendars-4.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
49
+ pandas_market_calendars-4.4.1.dist-info/top_level.txt,sha256=_4cUEFr07SuEAzZMT-5p0lJGXxO9imVbEK9_5oqcopQ,24
50
+ pandas_market_calendars-4.4.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,50 +0,0 @@
1
- pandas_market_calendars/__init__.py,sha256=Mv4FiG78VDgnFxB9HF66tEP0T9a567NaDPZvaDdjYKQ,1361
2
- pandas_market_calendars/calendar_registry.py,sha256=h-GWQ-jFETVin-QW0XqunX8j8tHxr8wBZmos6fTVfNs,2451
3
- pandas_market_calendars/calendar_utils.py,sha256=mmpamL4LIOpWb-gPOnEU82L5dfHYwMryCYC05mWiuck,11997
4
- pandas_market_calendars/class_registry.py,sha256=lpRSp1E_1vcY73a--daCIOsJpoxpJVuhlurRGDVUqlc,3868
5
- pandas_market_calendars/market_calendar.py,sha256=pb4JFEeGgLvTJWyb9jKfus9Mj_6-_Ql-fXILvIaj5WA,34050
6
- pandas_market_calendars/calendars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- pandas_market_calendars/calendars/asx.py,sha256=zMva21MfmbIHEk4p66CrY17GPhtPDOHoRlrvOHsyaYQ,1855
8
- pandas_market_calendars/calendars/bmf.py,sha256=LrxgKSL4jptjzKQL9GBXTMmTHnay-3gSTBRFSq4mQSk,5561
9
- pandas_market_calendars/calendars/bse.py,sha256=9FMotyaIafV7-0WYDi2soRkzQCG1rhPLzgaly2dBGFo,16485
10
- pandas_market_calendars/calendars/cboe.py,sha256=NYHXwMm5B6ynNyWEOqXnOEhzWWqbBPRWFW5v7c4Ul8Q,3910
11
- pandas_market_calendars/calendars/cme.py,sha256=wxHo-za9Pz61aUALuab5luKlAB_jmztxDVaF2njDCbs,10739
12
- pandas_market_calendars/calendars/cme_globex_agriculture.py,sha256=zBfdlWeMxW-2peOdnTrDVBGDO_yeqGShsKz_y8jZKok,3364
13
- pandas_market_calendars/calendars/cme_globex_base.py,sha256=M8nIv0ZqJ_8ePrNaCZx3patXp8DW6sS-wLCEStl9Mxs,3181
14
- pandas_market_calendars/calendars/cme_globex_crypto.py,sha256=oORJKcqbM30upCDz-9PLgc1dnOj2y4CwTbulqsTu7OI,5623
15
- pandas_market_calendars/calendars/cme_globex_energy_and_metals.py,sha256=XsN0u6aubf5CMVUB41H64DcnZgiCgAfOxMS9xAhjDm4,6836
16
- pandas_market_calendars/calendars/cme_globex_equities.py,sha256=vti4rHb6uVtzHkrHFqLkCKuVnJUDGgq7zgEdBH-n28A,3762
17
- pandas_market_calendars/calendars/cme_globex_fixed_income.py,sha256=xWKkqZPlAEB_75boIKnGIBGjYshLGzBdJRKg715WY6c,4423
18
- pandas_market_calendars/calendars/cme_globex_fx.py,sha256=hYqU6s-BorE4x4drCGJ9RBTysg54WKpFPpw8nPVYYOI,3307
19
- pandas_market_calendars/calendars/eurex.py,sha256=xpMUjMss6MXeqZaENs9FGFo3_GmAUjfjhRPgnJ3kiPA,3059
20
- pandas_market_calendars/calendars/eurex_fixed_income.py,sha256=cGeO6DtVB_RvEW725igBDBzsJTpDamP4jRNYlk_QkPA,2230
21
- pandas_market_calendars/calendars/hkex.py,sha256=cteQ2TYhdWg00QC6Wq5NO4NiW5w3lNlXLvqxmAkbkzw,14248
22
- pandas_market_calendars/calendars/ice.py,sha256=YWxxfgtZJFt8B4A5TLlpwd3E1RqTMzJ9xxgLn7bYEk8,2240
23
- pandas_market_calendars/calendars/iex.py,sha256=IqA5-9H6qZxWikXdyjGOy7SIgr5rp_lhOcFucGA6aXE,3139
24
- pandas_market_calendars/calendars/jpx.py,sha256=6tJvGS4L4OM02ee-UzZQsObFjLuYJpU9v-lxGKMZ6mw,3704
25
- pandas_market_calendars/calendars/lse.py,sha256=PmDS-f3DaIKvU5D4n9z603dHvajuqa-bPNuQ4baPmbU,3228
26
- pandas_market_calendars/calendars/mirror.py,sha256=vyp18NNje9pKeVXGL8V-d7yVJfbvZLmkCt01hIpIp6Y,4068
27
- pandas_market_calendars/calendars/nyse.py,sha256=V9X-NRAQsK0UIU3Asv9kmcFak7rsdQhcP_xx6sqLF6A,61617
28
- pandas_market_calendars/calendars/ose.py,sha256=8bTjdV-FFRrCTFrpyAh7MVyB5BhXl63Q9NteVVMhelc,3054
29
- pandas_market_calendars/calendars/sifma.py,sha256=m7U13TS_cLLC3uWb9DAUtrhmY9GVtgsYeto3d7s2x1I,10182
30
- pandas_market_calendars/calendars/six.py,sha256=G5IbzC3mq4lQet7m0PQsDa2HQGa_91br_RkEU6U7y88,2742
31
- pandas_market_calendars/calendars/sse.py,sha256=i2xhnAIeuV37MKcHOhlmw2dl04VwPJFcjbStc0YZZVg,11218
32
- pandas_market_calendars/calendars/tase.py,sha256=Zv8hNJdrPp5GAaHNzPEklxDvMx4D2bxCItkpplCtCp8,8033
33
- pandas_market_calendars/calendars/tsx.py,sha256=VYT_Qm8flncguf_AtYhMgqmF8fhfclnUhyxCRROGTcQ,4195
34
- pandas_market_calendars/holidays/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- pandas_market_calendars/holidays/cme.py,sha256=NWI37dnwc8ThGr1NDnTOw6eAKMicnt4nq50DgjYE7gk,9474
36
- pandas_market_calendars/holidays/cme_globex.py,sha256=lN5AV9b1J4vDUhoMsr1YXTFNE8siseZJGKvX5qL9si0,5304
37
- pandas_market_calendars/holidays/cn.py,sha256=kifIYhH34HOtMbcOpeYJXfZRSnDJiHcYm6kgZuemo8o,48195
38
- pandas_market_calendars/holidays/jp.py,sha256=9XYrKDb05O8UghXSxjfjCV833hQNua2b_q68fhFWzL0,9601
39
- pandas_market_calendars/holidays/jpx_equinox.py,sha256=bEg0Dr3S6z28sG1dn2s_bU60Pf9gcwwsg7l4cWLdgQY,8069
40
- pandas_market_calendars/holidays/nyse.py,sha256=Fi9FlsJOrM6x3aiH6EHJ7s5K6u5IAnvVjYA9zBl2dDc,41288
41
- pandas_market_calendars/holidays/oz.py,sha256=dHPD2t4ffcC8083g05dT5HJbFTzLqC2ZCAvq8UPeKMo,1105
42
- pandas_market_calendars/holidays/sifma.py,sha256=mx1WPC2VxSndcJqr3uINOFJc9PkXv9IkCwSwctYdt4M,8759
43
- pandas_market_calendars/holidays/uk.py,sha256=dt5TNONlDMXPw8wjyyPBYNnLO5Yz6Mht8VrPUrNqy-M,4719
44
- pandas_market_calendars/holidays/us.py,sha256=Lk4LjyP4QKG3MIFQnvd4NykPDId1FhqBxfO9khivCNU,11891
45
- pandas_market_calendars-4.3.3.dist-info/LICENSE,sha256=qW51_A-I7YutlB-s8VSKeOP-aL83T-Lb8LqqU1x1ilw,1065
46
- pandas_market_calendars-4.3.3.dist-info/METADATA,sha256=tIgyEeJhg4e_jyQ750YbYKA6DJSSvcGmwl5QW1-qHE8,9024
47
- pandas_market_calendars-4.3.3.dist-info/NOTICE,sha256=mmH7c9aF5FsELh1OHXloXw1TajLD_mWDKO4dsVf43_E,11693
48
- pandas_market_calendars-4.3.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
49
- pandas_market_calendars-4.3.3.dist-info/top_level.txt,sha256=_4cUEFr07SuEAzZMT-5p0lJGXxO9imVbEK9_5oqcopQ,24
50
- pandas_market_calendars-4.3.3.dist-info/RECORD,,