pandas-market-calendars 5.1.0__py3-none-any.whl → 5.1.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 (48) hide show
  1. pandas_market_calendars/__init__.py +39 -39
  2. pandas_market_calendars/calendar_registry.py +57 -57
  3. pandas_market_calendars/calendar_utils.py +1151 -1151
  4. pandas_market_calendars/calendars/asx.py +77 -70
  5. pandas_market_calendars/calendars/bmf.py +226 -219
  6. pandas_market_calendars/calendars/bse.py +432 -425
  7. pandas_market_calendars/calendars/cboe.py +156 -149
  8. pandas_market_calendars/calendars/cme.py +412 -405
  9. pandas_market_calendars/calendars/cme_globex_agriculture.py +172 -172
  10. pandas_market_calendars/calendars/cme_globex_base.py +126 -119
  11. pandas_market_calendars/calendars/cme_globex_crypto.py +165 -158
  12. pandas_market_calendars/calendars/cme_globex_energy_and_metals.py +223 -216
  13. pandas_market_calendars/calendars/cme_globex_equities.py +130 -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 +138 -131
  17. pandas_market_calendars/calendars/eurex_fixed_income.py +105 -98
  18. pandas_market_calendars/calendars/hkex.py +438 -431
  19. pandas_market_calendars/calendars/ice.py +88 -81
  20. pandas_market_calendars/calendars/iex.py +162 -155
  21. pandas_market_calendars/calendars/jpx.py +124 -117
  22. pandas_market_calendars/calendars/lse.py +125 -118
  23. pandas_market_calendars/calendars/mirror.py +144 -144
  24. pandas_market_calendars/calendars/nyse.py +1472 -1466
  25. pandas_market_calendars/calendars/ose.py +125 -118
  26. pandas_market_calendars/calendars/sifma.py +390 -383
  27. pandas_market_calendars/calendars/six.py +143 -136
  28. pandas_market_calendars/calendars/sse.py +322 -315
  29. pandas_market_calendars/calendars/tase.py +231 -224
  30. pandas_market_calendars/calendars/tsx.py +192 -185
  31. pandas_market_calendars/class_registry.py +115 -115
  32. pandas_market_calendars/holidays/cme.py +385 -385
  33. pandas_market_calendars/holidays/cme_globex.py +214 -214
  34. pandas_market_calendars/holidays/cn.py +1476 -1476
  35. pandas_market_calendars/holidays/jp.py +401 -401
  36. pandas_market_calendars/holidays/jpx_equinox.py +506 -506
  37. pandas_market_calendars/holidays/nyse.py +1536 -1536
  38. pandas_market_calendars/holidays/oz.py +63 -63
  39. pandas_market_calendars/holidays/sifma.py +350 -350
  40. pandas_market_calendars/holidays/us.py +376 -376
  41. pandas_market_calendars/market_calendar.py +1008 -1008
  42. {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.1.dist-info}/METADATA +3 -1
  43. pandas_market_calendars-5.1.1.dist-info/RECORD +50 -0
  44. {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.1.dist-info}/WHEEL +1 -1
  45. pandas_market_calendars-5.1.0.dist-info/RECORD +0 -50
  46. {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.1.dist-info}/licenses/LICENSE +0 -0
  47. {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.1.dist-info}/licenses/NOTICE +0 -0
  48. {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.1.dist-info}/top_level.txt +0 -0
@@ -1,39 +1,39 @@
1
- # Fork of Zipline by Quantopian released under MIT license. Original Zipline license below.
2
- #
3
- # Copyright 2016 Quantopian, Inc.
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
-
17
- from importlib import metadata
18
-
19
- from .calendar_registry import get_calendar, get_calendar_names
20
- from .calendar_utils import convert_freq, date_range, merge_schedules, mark_session
21
-
22
- # TODO: is the below needed? Can I replace all the imports on the calendars with ".market_calendar"
23
- from .market_calendar import MarketCalendar
24
-
25
- # if running in development there may not be a package
26
- try:
27
- __version__ = metadata.version("pandas_market_calendars")
28
- except metadata.PackageNotFoundError:
29
- __version__ = "development"
30
-
31
- __all__ = [
32
- "MarketCalendar",
33
- "get_calendar",
34
- "get_calendar_names",
35
- "merge_schedules",
36
- "date_range",
37
- "mark_session",
38
- "convert_freq",
39
- ]
1
+ # Fork of Zipline by Quantopian released under MIT license. Original Zipline license below.
2
+ #
3
+ # Copyright 2016 Quantopian, Inc.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ from importlib import metadata
18
+
19
+ from .calendar_registry import get_calendar, get_calendar_names
20
+ from .calendar_utils import convert_freq, date_range, merge_schedules, mark_session
21
+
22
+ # TODO: is the below needed? Can I replace all the imports on the calendars with ".market_calendar"
23
+ from .market_calendar import MarketCalendar
24
+
25
+ # if running in development there may not be a package
26
+ try:
27
+ __version__ = metadata.version("pandas_market_calendars")
28
+ except metadata.PackageNotFoundError:
29
+ __version__ = "development"
30
+
31
+ __all__ = [
32
+ "MarketCalendar",
33
+ "get_calendar",
34
+ "get_calendar_names",
35
+ "merge_schedules",
36
+ "date_range",
37
+ "mark_session",
38
+ "convert_freq",
39
+ ]
@@ -1,57 +1,57 @@
1
- from .market_calendar import MarketCalendar
2
- from .calendars.asx import ASXExchangeCalendar
3
- from .calendars.bmf import BMFExchangeCalendar
4
- from .calendars.bse import BSEExchangeCalendar
5
- from .calendars.cboe import CFEExchangeCalendar
6
- from .calendars.cme import CMEEquityExchangeCalendar, CMEBondExchangeCalendar
7
- from .calendars.cme_globex_base import CMEGlobexBaseExchangeCalendar
8
- from .calendars.cme_globex_agriculture import (
9
- CMEGlobexAgricultureExchangeCalendar,
10
- CMEGlobexLivestockExchangeCalendar,
11
- CMEGlobexGrainsAndOilseedsExchangeCalendar,
12
- )
13
- from .calendars.cme_globex_crypto import CMEGlobexCryptoExchangeCalendar
14
- from .calendars.cme_globex_energy_and_metals import (
15
- CMEGlobexEnergyAndMetalsExchangeCalendar,
16
- )
17
- from .calendars.cme_globex_equities import CMEGlobexEquitiesExchangeCalendar
18
- from .calendars.cme_globex_fx import CMEGlobexFXExchangeCalendar
19
- from .calendars.cme_globex_fixed_income import CMEGlobexFixedIncomeCalendar
20
- from .calendars.eurex import EUREXExchangeCalendar
21
- from .calendars.eurex_fixed_income import EUREXFixedIncomeCalendar
22
- from .calendars.hkex import HKEXExchangeCalendar
23
- from .calendars.ice import ICEExchangeCalendar
24
- from .calendars.iex import IEXExchangeCalendar
25
- from .calendars.jpx import JPXExchangeCalendar
26
- from .calendars.lse import LSEExchangeCalendar
27
- from .calendars.nyse import NYSEExchangeCalendar
28
- from .calendars.ose import OSEExchangeCalendar
29
- from .calendars.sifma import (
30
- SIFMAUSExchangeCalendar,
31
- SIFMAUKExchangeCalendar,
32
- SIFMAJPExchangeCalendar,
33
- )
34
- from .calendars.six import SIXExchangeCalendar
35
- from .calendars.sse import SSEExchangeCalendar
36
- from .calendars.tase import TASEExchangeCalendar
37
- from .calendars.tsx import TSXExchangeCalendar
38
- from .calendars.mirror import *
39
-
40
-
41
- def get_calendar(name, open_time=None, close_time=None) -> MarketCalendar:
42
- """
43
- Retrieves an instance of an MarketCalendar whose name is given.
44
-
45
- :param name: The name of the MarketCalendar to be retrieved.
46
- :param open_time: Market open time override as datetime.time object. If None then default is used.
47
- :param close_time: Market close time override as datetime.time object. If None then default is used.
48
- :return: MarketCalendar of the desired calendar.
49
- """
50
- return MarketCalendar.factory(name, open_time=open_time, close_time=close_time)
51
-
52
-
53
- def get_calendar_names():
54
- """All Market Calendar names and aliases that can be used in "factory"
55
- :return: list(str)
56
- """
57
- return MarketCalendar.calendar_names()
1
+ from .market_calendar import MarketCalendar
2
+ from .calendars.asx import ASXExchangeCalendar
3
+ from .calendars.bmf import BMFExchangeCalendar
4
+ from .calendars.bse import BSEExchangeCalendar
5
+ from .calendars.cboe import CFEExchangeCalendar
6
+ from .calendars.cme import CMEEquityExchangeCalendar, CMEBondExchangeCalendar
7
+ from .calendars.cme_globex_base import CMEGlobexBaseExchangeCalendar
8
+ from .calendars.cme_globex_agriculture import (
9
+ CMEGlobexAgricultureExchangeCalendar,
10
+ CMEGlobexLivestockExchangeCalendar,
11
+ CMEGlobexGrainsAndOilseedsExchangeCalendar,
12
+ )
13
+ from .calendars.cme_globex_crypto import CMEGlobexCryptoExchangeCalendar
14
+ from .calendars.cme_globex_energy_and_metals import (
15
+ CMEGlobexEnergyAndMetalsExchangeCalendar,
16
+ )
17
+ from .calendars.cme_globex_equities import CMEGlobexEquitiesExchangeCalendar
18
+ from .calendars.cme_globex_fx import CMEGlobexFXExchangeCalendar
19
+ from .calendars.cme_globex_fixed_income import CMEGlobexFixedIncomeCalendar
20
+ from .calendars.eurex import EUREXExchangeCalendar
21
+ from .calendars.eurex_fixed_income import EUREXFixedIncomeCalendar
22
+ from .calendars.hkex import HKEXExchangeCalendar
23
+ from .calendars.ice import ICEExchangeCalendar
24
+ from .calendars.iex import IEXExchangeCalendar
25
+ from .calendars.jpx import JPXExchangeCalendar
26
+ from .calendars.lse import LSEExchangeCalendar
27
+ from .calendars.nyse import NYSEExchangeCalendar
28
+ from .calendars.ose import OSEExchangeCalendar
29
+ from .calendars.sifma import (
30
+ SIFMAUSExchangeCalendar,
31
+ SIFMAUKExchangeCalendar,
32
+ SIFMAJPExchangeCalendar,
33
+ )
34
+ from .calendars.six import SIXExchangeCalendar
35
+ from .calendars.sse import SSEExchangeCalendar
36
+ from .calendars.tase import TASEExchangeCalendar
37
+ from .calendars.tsx import TSXExchangeCalendar
38
+ from .calendars.mirror import *
39
+
40
+
41
+ def get_calendar(name, open_time=None, close_time=None) -> MarketCalendar:
42
+ """
43
+ Retrieves an instance of an MarketCalendar whose name is given.
44
+
45
+ :param name: The name of the MarketCalendar to be retrieved.
46
+ :param open_time: Market open time override as datetime.time object. If None then default is used.
47
+ :param close_time: Market close time override as datetime.time object. If None then default is used.
48
+ :return: MarketCalendar of the desired calendar.
49
+ """
50
+ return MarketCalendar.factory(name, open_time=open_time, close_time=close_time)
51
+
52
+
53
+ def get_calendar_names():
54
+ """All Market Calendar names and aliases that can be used in "factory"
55
+ :return: list(str)
56
+ """
57
+ return MarketCalendar.calendar_names()